FleyerShaver
Neues Mitglied
Ich habe da folgenden Code
Wenn ich dieses Skript bei XAMPP starte kommt aber nur so eine Fehlermeldung:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\Programme\xampp\htdocs\index.php on line 14
Was mach ich falsch?
PHP:
<?php
error_reporting(E_ALL);
include "inc/config.php";
@mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
echo " <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
echo " <html>\n";
echo " <head> \n";
echo " <title> Meine Clanseite </title>\n";
echo " <link rel=\" stylesheet\" tybe=\"text/css\" href=\"style.css\"/>\n ";
echo " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\" />\n";
echo " </head> \n";
echo " <body> \n;
echo " <div id=\"root\"> \n";
echo " </div> \n";
echo " <div id=\"banner\">\n";
include "banner.php";
echo " </div> \n ";
echo " <div id=\"links\">\n";
include "menu.php";
echo " </div>\n";
echo " <div id=\"mitte\">\n";
include "inhalt.php";
echo "</div>\n";
echo " <br style=\"clear:both;\" />\n";
echo " </div>\n";
echo "</body>\n";
echo " </html>\n";
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\Programme\xampp\htdocs\index.php on line 14
Was mach ich falsch?