I am not sure if you understand.
The field "last_years_club" contains "Tampa/Norwich ('00) "
I pull it from the database and try and insert it into a form field.
echo " <tr>
<td width='100' align='right'>Last Years Club:</td>
<td width='5'> </td>
<td width='495'><input name='last_years_club' type='text' id='height5' size='25' value='$last_years_club'></td>
</tr>";
It gets inserted into the form field as "Tampa/Norwich (" stoping at the single quote.
if I echo $last_years_club before the form field like:
echo " <tr>
<td width='100' align='right'>Last Years Club:</td>
<td width='5'> </td>
<td width='495'>$last_years_club<input name='last_years_club' type='text' id='height5' size='25' value='$last_years_club'></td>
</tr>";
it displays correctly before the form field, but not in the form field. How do I get it to display correctly in the form field?
Even if I display it like you said:
<tr>
<td width='100' align='right'>Last Years Club:</td>
<td width='5'> </td>
<td width='495'><input name='last_years_club' type='text' id='height5' size='25' value='<? echo $last_years_club ?>'></td>
</tr>
It still doesn't work.