I have a form like:
<select size="1" name="area">
.
.
while($row = mysql_fetch_array($result))
{
?>
<option value=<?=$row['area']?>><?=$row['area']?></option>
<?
.
.
1- if the fetched is only one word, i have no problem BUT
2- When i have $row=['area'] ecual to "happy day" that came form MySQL (as
two word with a space).
3- I have a problem when submit the form , if i echo $_POST['area'] in the
action file .. i got only "happy" without "day"
Please help me , because i m going to pull my hair off...
Nabil
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php