I tried that didnt work. What im doing is storing a quote in a DB it stores fine, and it prints fine everywhere except a text form.
This is my code:
<?php
$db = mysql_connect("localhost", "", "");
mysql_select_db("",$db);
$result = mysql_query("SELECT * FROM members WHERE name = '$update_menu'",$db);
$row = mysql_fetch_array($result);
?>
That part obvuiosly takes the info from the DB.
$row["quote"] is equal to "i dont have a quote"
If I do that it works...
echo $row["quote"];
But if i do this it wont work
<input type="text" name="quote" value="<?php echo $row["quote"];?>" size="40">
I have no idea why it wont print in the test form...