[PHP5] Fehlersuche

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

  • [PHP5] Fehlersuche

    Habe gerade ne Brett vor den Augen, brauche mal kurz Hilfe bei der Fehlersuche.

    Fehlermeldung:
    Code:
    Parse error: syntax error, unexpected T_VARIABLE, expecting T_STRING in 
    /usr/export/www/hosting/evoxer/include/update2.php on line 19


    PHP-Code:
    mysql_connect("***","***","****");
    mysql_select_db("****");


    $abfrage "SELECT * FROM evoxwerte";
    $ergebnis mysql_query($abfrage);

    mysql_connect("****","*****","*****");
    mysql_select_db("******");


    while(
    $row mysql_fetch_object($ergebnis))
    {
     
    $insert mysql_query
     
    ("
     INSERT INTO `werte` (`wertid`, `gbid`, `timestamp`, `gp`, `gilde`, `rang`, `level`, `land`, 
    `levelnat`, `rangnat`, `forumid`) 
     VALUES ('', '
    $row->gbid', '$row->timestamp', '$row->gp', '$row->gilde', '$row->rang', 
    '
    $row->level', '$row->land', '$row->levelnat', '$row->$rangnat', '$row->forumid');
     "
    )
     or die(
    mysql_error());


  • #2
    Hier
    PHP-Code:
    '$row->$rangnat' 
    Gruss

    tobi
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar


    • #3
      Auf den ersten Blick sehe ich mal ein semikolon was da generell nicht hin gehört. Wo ist denn Zeile 19?

      Kommentar


      • #4
        Original geschrieben von jahlives
        Hier
        PHP-Code:
        '$row->$rangnat' 
        Gruss

        tobi
        Danke das wars....

        Kommentar


        • #5
          OffTopic:
          Der Streber hat bestimmt selbst gezählt! :P

          Kommentar


          • #6
            Und bevor du jetzt noch mit dem nächsten Prob kommst, lies noch TobiaZ's Post bezüglich des ; am Ende der Query. Ich vermute das ergibt dann eine ungültige Query.

            Gruss

            tobi
            Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

            [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
            Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

            Kommentar


            • #7
              Der Streber hat bestimmt selbst gezählt! :P
              @tobiaz
              Nö habe isch nischt. Nur nach nem $ gesucht wo keiner sein sollte (unexpected T_VARIABLE)

              Gruss

              tobi (der Streber
              Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

              [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
              Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

              Kommentar

              Lädt...
              X