Hi,
I have a hidden field in a form that I use as the key.
The Field is a Name and is in the format :
John Smith
I build the table as I read through all the records in my table so I can't put quotes around the value (as suggested in other threads
$line .="<tr><td>$name<input type=hidden name=$hide value=$name></td>
<td><input type=text name=$check_email size=25 maxlength=50 value=$email></td></tr>";
The problem I'm having is that when the form data is returned it ignores eveything after the blank, all I receive back is John
Can anybody tell me how to fix this ?
Thanks