need help w/ Parse error: syntax error, unexpected T_VARIABLE

Discussion in 'PHP' started by PGriff, Mar 6, 2011.

  1. #1
    I'm getting error: syntax error, unexpected T_VARIABLE message. The code was php3 and I'm updating it to php5. Any hints or suggestions would be appreciated greatly. I think this is the line:

    print"<SELECT NAME="$name">n<OPTION VALUE="0">Nonen";

    Thanks.

    -PGriff
     
    PGriff, Mar 6, 2011 IP
  2. PGriff

    PGriff Peon

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I should add that this in an include file html.inc.
     
    PGriff, Mar 6, 2011 IP
  3. PGriff

    PGriff Peon

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I think I've figured it out. I'm replacing " with ' and the error message keeps returning lines later in the file as I go. Sorry to bother you if this is really it. What a kick to figure out something on my own!

    Thanks.

    -PGriff
     
    PGriff, Mar 6, 2011 IP
  4. Rory M

    Rory M Peon

    Messages:
    1,020
    Likes Received:
    37
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Using your specific code:
    print("<SELECT NAME=".$name.">n<OPTION VALUE=\"0\">Nonen");
    PHP:
    Or slightly cleaner:
    
    echo "<SELECT NAME='$name'>n<OPTION VALUE='0'>Noen";
    
    PHP:
    Both should work without syntax errors :)
     
    Rory M, Mar 6, 2011 IP
  5. PGriff

    PGriff Peon

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thanks for your advice. Is there a book you recommend for how to learn php and/or how to learn to think like a programmer (ie. programming logic)?
    PGriff
     
    PGriff, Mar 7, 2011 IP
  6. property

    property Peon

    Messages:
    134
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    variable missing error or curly bracket closing error please check bracket again
     
    property, Mar 7, 2011 IP
  7. admins

    admins Peon

    Messages:
    74
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    admins, Mar 8, 2011 IP