echo "Info: <input type=\"text\" name=\"titel\"> value=\" . $row['titel'] . "\">" . "<br />";
Why is it showing:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/lokachan/public_html/andravisaform.php on line 24
echo "Info: <input type=\"text\" name=\"titel\"> value=\" . $row['titel'] . "\">" . "<br />";
Why is it showing:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/lokachan/public_html/andravisaform.php on line 24
Change to:
You're missing a
"
after a\"
.I would prefer to write it as:
Now you don't need so many escapes.
This would save you typing
You're missing a quote