Create Table Syntax Fehler

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Create Table Syntax Fehler

    Hiho!
    Nun, ich würde gern eine neue Tabelle über das folgende Skript in meine Datenbank erstellen, jedoch gibt mir der Parser folgende Fehlermeldung aus:

    Parse error: syntax error, unexpected T_STRING in /home/www/web357/html/v16/test.php on line 22

    Jedoch finde ich einfach die Fehlerquelle nicht. Ich würde mich freuen, wenn mir jemand helfen kann. Im voraus danke!

    PHP-Code:
    <?php
         error_reporting
    (E_ALL);

         
    $datum getdate();
         IF (
    $datum["minutes"]<10) {$min "0" $datum["minutes"];} 
         ELSE {
    $min $datum["minutes"];}
         IF (
    $datum["hours"]<10) {$hour "0" $datum["hours"];} 
         ELSE {
    $hour $datum["hours"];}
         IF (
    $datum["mday"]<10) {$day "0" $datum["mday"];} 
         ELSE {
    $day $datum["mday"];}
         IF (
    $datum["mon"]<10) {$month "0" $datum["mon"];} 
         ELSE {
    $month $datum["mon"];}
         
    $year $datum["year"];

         
    $ip $_SERVER["REMOTE_ADDR"];
         
    $t_name "lwshop_" $hour $min "_" $day $month $year "_" $ip;

         
    $host="localhost";
         
    $mysql_user="uuu";
         
    $mysql_password="ppp";
         
    $db="ddd";
         
    $link mysql_connect($host$mysql_user$mysql_password);
         
    mysql_select_db($db$link);

    #Zeile 22     CREATE TABLE $t_name(
                
    ID int(11NOT NULL AUTO_INCREMENT,
                
    Waren text,
                
    Kosten int(11),
                
    VKosten double,
                
    Size tinyint(4),
                
    PRIMARY KEY (ID)
         );

        
    ?>

  • #2
    ok, hab die fehlerquelle. um den mysql-syntax musste noch das :
    mysql_query("[...]");

    Chö.

    Kommentar


    • #3
      Phänomenal ...!
      I don't believe in rebirth. Actually, I never did in my whole lives.

      Kommentar

      Lädt...
      X