Forum Moderators: coopster
When I display the record on the form I get 15, everything after the space is not displayed.
the HTML code for the form is:
<td width="31%"><input name="Address" type="text" size="40" value=<?php echo $record['ResAddress'];?>></td>
This has come from a mysql query which works fine. I just can't echo the entire string.
Any help would be greatly appreciated.
I would look at the data in mysql and see if it really is a space and see if all the data exists there.
I would then look at the array $record and see what you see there, in the source as well as in the browser, using something like this
echo '<pre>';
print_r($record);
echo '</pre>';
see if all that gives you any clues as to what is actually happening.