Hi all,
I am building a menu system. I save data in a table in the following manner:
menu item menuusertype menudesc menulink
1 admin Display Menus menudisplay.php
2 admin Display Users displayusers.php
.
.
.
I get the data saved in my table fine. On my page (menudisplay.php) I do similar to the following
echo "<input name='menunumber' size=20 type=text value=".$GET['menuno']." ";
echo "<input name='menudesc' size=20 type=text value=".$GET['menudesc']." ";
This code isn't exactly like what I have working... My laptop (with all the source) is turned off right now. But the problem I'm having is this:
everything displays properly in my input boxes except 'menudesc' where I am saving a phrase with spaces in it. On 'meudesc', I'm getting ONLY the first word.
Any ideas what I might do differently.
Thanks in advance
JB