I have a form that populates itself from mysql. One of the feilds is called name.
I am displaying the text feild like below with the variable in it.
echo "</td> </tr> <tr> <td> <input type='text' name='newname' value=".$info['name']." size=40 maxlenght=40> </td> </table>";
However, when I view this if the value in the DB for name is "Mr X" I only see Mr in the form.
How can I display the whole variable including anything after the space.
MoMoZoNe
I am displaying the text feild like below with the variable in it.
echo "</td> </tr> <tr> <td> <input type='text' name='newname' value=".$info['name']." size=40 maxlenght=40> </td> </table>";
However, when I view this if the value in the DB for name is "Mr X" I only see Mr in the form.
How can I display the whole variable including anything after the space.
MoMoZoNe