Jump to content

Need help with syntax?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
hayschooler

hayschooler

    Learning Programmer

  • Members
  • PipPipPip
  • 31 posts
Can someone point out how to correct the syntax of this statement:

echo "<input type=\"text\" name=\"isbn\" value=\" . $rows['isbn'] . \">";

Are there quotes, spaces or backslashes missing? Can't get it to work.

#2
John

John

    Writes binary right handed and hex left handed

  • Moderators
  • 6,321 posts
echo "<input type=\"text\" name=\"isbn\" value=\"" . $rows['isbn'] . "\">";