login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Template fout

Offline Jeroen - 18/09/2004 17:32
Avatar van JeroenOnbekend Dit een een aardige grote vraag dus het kan een beetje raar over komen. Ik wil mijn lay makkelijk overal in kunnen voegen. MAar nu gaat het verkeerd! Hier kun je de fout zien: http://www.realphotoshop.nl/jeroen/

Hieronder alle paginas die erbij horen:

include/config.php
  1. <?php
  2.  
  3. # Connectie gegevens
  4. $hostname = "localhost"; // Meestal localhost
  5. $gebruikersnaam = "***"; // Je gebruikersnaam voor je database
  6. $wachtwoord = "***"; // Je wachtwoord voor je database
  7. $database = "***"; // Je database naam waar je tabellen in staan
  8.  
  9. # Connectie naar database
  10. mysql_connect ($hostname, $gebruikersnaam, $wachtwoord) or die (mysql_error());
  11. mysql_select_db ($database) or die (mysql_error());
  12.  
  13. # Globale gegevens
  14. $site['url'] = "http://www.realphotoshop.nl/jeroen";
  15. $site['naam'] = "Portfolio";
  16. $site['titel'] = "Realphotoshop » Portfolio";
  17. ?>


include/layout.php
  1. <?php
  2. # Globale gegevens
  3. $site['url'] = "http://www.realphotoshop.nl/jeroen";
  4. $site['naam'] = "Portfolio";
  5. $site['titel'] = "Realphotoshop » Portfolio";
  6.  
  7. <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">
  8. <html>
  9.  
  10. <titel>".$site['titel']."</titel>
  11. <META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=iso-8859-1\">
  12. <link rel=\stylesheet\" type=\"text/css\" href=".$site['url']."\"style.css\">
  13. </head>
  14. <body>
  15.  
  16. <table WIDTH=526 BORDER=0 align=\"center\" CELLPADDING=\"0\" CELLSPACING=\"0\">
  17. <tr>
  18. <TD COLSPAN=6>
  19. <IMG SRC=\"images/index_01.jpg\" ALT=\"\" WIDTH=526 HEIGHT=80 border=\"0\"></TD>
  20. </tr>
  21. <tr>
  22. <td COLSPAN=2>
  23. <IMG SRC=".$site['url']."\images/index_02.jpg\" WIDTH=131 HEIGHT=32 ALT=\"\"></TD>
  24. <td>
  25. <IMG SRC=".$site['url']."\"images/index_03.jpg\" WIDTH=116 HEIGHT=32 ALT=\"\"></TD>
  26. <td>
  27. <IMG SRC=".$site['url']."\"images/index_04.jpg\" WIDTH=117 HEIGHT=32 ALT=\"\"></TD>
  28. <IMG SRC=".$site['url']."\"images/index_04.jpg\" WIDTH=117 HEIGHT=32 ALT=\"\"></TD>
  29. <td COLSPAN=2>
  30. <IMG SRC=".$site['url']."\"images/index_05.jpg\" WIDTH=162 HEIGHT=32 ALT=\"\"></TD>
  31. </tr>
  32. <tr>
  33. <TD COLSPAN=6><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  34. <tr>
  35. <td width=\"10\" class=\"zijkant_links\">&nbsp;</td>
  36. <td width=\"499\" bgcolor=\"#FFFFFF\"><table width=\"499\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  37. <tr>
  38. <td width=\"104\" class=\"nieuws_menu\"><p>&nbsp;</p>
  39. </td>
  40. <td width=\"280\" class=\"nieuws_menu\">&nbsp;</td>
  41. <td width=\"55\" class=\"nieuws_menu\">&nbsp;</td>
  42. <td width=\"60\" class=\"nieuws_menu\">&nbsp;</td>
  43. </tr>
  44. </table></td>
  45. <td width=\"17\" class=\"bg_rechts\">&nbsp;</td>
  46. </tr>
  47. </table></TD>
  48. </tr>
  49. <tr>
  50. <td COLSPAN=6>
  51. <IMG SRC=".$site['url']."\"images/index_07.jpg\" WIDTH=526 HEIGHT=10 ALT=\"\"></TD>
  52. </tr>
  53. <tr>
  54. <td COLSPAN=6>
  55. <IMG SRC=".$site['url']."\"images/index_08.jpg\" WIDTH=526 HEIGHT=41 ALT=\"\"></TD>
  56. </tr>
  57. <tr>
  58. <td class=\"zijkant_links\">&nbsp;
  59. </td>
  60. <td COLSPAN=4 valign=\"top\" class=\"nieuws\">".$page_content."
  61. </td>
  62. <td class=\"zijkant_rechts\">&nbsp;
  63. </td>
  64. </tr>
  65. <tr>
  66. <td>
  67. <IMG SRC=".$site['url']."\"images/index_12.jpg\" WIDTH=70 HEIGHT=14 ALT=\"\"></TD>
  68. <td COLSPAN=4>
  69. <IMG SRC=".$site['url']."\"images/index_13.jpg\" WIDTH=392 HEIGHT=14 ALT=\"\"></TD>
  70. <td>
  71. <IMG SRC=".$site['url']."\"images/index_14.jpg\" WIDTH=64 HEIGHT=14 ALT=\"\"></TD>
  72. </tr>
  73. <tr>
  74. <TD COLSPAN=6>
  75. <IMG SRC=".$site['url']."\"images/index_15.jpg\" WIDTH=526 HEIGHT=39 ALT=\"\"></TD>
  76. </tr>
  77. <tr>
  78. <td>
  79. <IMG SRC=".$site['url']."\"images/spacer.gif\" WIDTH=70 HEIGHT=1 ALT=\"\"></TD>
  80. <td>
  81. <IMG SRC=".$site['url']."\"images/spacer.gif\" WIDTH=61 HEIGHT=1 ALT=\"\"></TD>
  82. <td>
  83. <IMG SRC=".$site['url']."\"images/spacer.gif\" WIDTH=116 HEIGHT=1 ALT=\"\"></TD>
  84. <td>
  85. <IMG SRC=".$site['url']."\"images/spacer.gif\" WIDTH=117 HEIGHT=1 ALT=\"\"></TD>
  86. <td>
  87. <IMG SRC=".$site['url']."\"images/spacer.gif\" WIDTH=98 HEIGHT=1 ALT=\"\"></TD>
  88. <td>
  89. <IMG SRC=".$site['url']."\"images/spacer.gif\" WIDTH=64 HEIGHT=1 ALT=\"\"></TD>
  90. </tr>
  91. </tabel>
  92. </body>
  93. </html>
  94. ";
  95. ?>


index.php
  1. <?php
  2. # Benodigde pagina's includen
  3. include ("include/config.php");
  4. include ("include/layout.php");
  5.  
  6. $page_titel = "Forum";
  7.  
  8. $page_content = "Hallo, Dit is een crap test!";
  9.  
  10. ?>


Waarom werkt hij nou niet?? Zou zou dus gewooon de lay in moeten cluden maar er komt een vage fout :S.

3 antwoorden

Gesponsorde links
Offline Bart - 18/09/2004 17:37
Avatar van Bart PHP expert
  1. $site['naam'] = "Portfolio";

hier moet de fout ergens zitten
Offline b4nkr0bz0r - 18/09/2004 17:37
Avatar van b4nkr0bz0r PHP gevorderde include ("include/config.php");

snap niet waarom je niet gewoon : include ("sjors.php"); doet
voor de rest weet ik ook niet
Offline Thomas - 18/09/2004 18:21
Avatar van Thomas Moderator Je moet $page_titel en $page_content VOOR je includes zetten als je deze in de includes wilt gebruiken, anders zijn ze namelijk nog niet bekend.
Waarom echo je trouwens alles in hemelsnaam ?
In een php file kun je ook gewoon HTML zetten, dus al die echo zooi kun je weglaten.
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.265s