I think I may have pasted the wrong code...sorry
$result = @("Select * from customers where id=99999");
if (!$result) {
echo("<p>Error in query: " .mysql_error(). "</p>");
exit();
}
if ($row = mysql_fetch_array($result))
{
echo($row[address]) ; <--this works
This doesn't??
echo("<br><input name='address' value=" .$row[address].">" ) ;
Thanks again,
Andrea