[snip]
echo $title=$row['title'];
echo "<tr><td><input name=\"title\" type=\"text\ value=\"$title\"
/></td>";
[/snip]

echo "<tr><td><input name=\"title\" type=\"text\ value=\"".$title."\"
/></td>";

You have to concatenate the value $title into the string

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to