Hi,
I choose a record from a list of all of them and then send that record to a page so that the fields can be put into text boxes for modification. However any field that has a space in it stops outputting data at the first space.
//Spew out each field name and data in a row
for ($i = 0; $i < $columns; $i++)
{
print "<tr>\n";
$fname = mysql_field_name($fields, $i);
$field = $fdata[$i];
if (is_null($field))
$field = 'x';
print "\t<td><font face=arial size=2/>$fname</font></td>\n";
print "\t<td><font face=arial size=2/><input type='text' size=20 value=$field name='text'></td>\n";
print "</tr>\n";
}