[PHP] mysql_fetch.......... From: Deependra B. Tandukar (deepndra <email protected>)
Date: 07/16/01

Greetings !

I have a table in mysql:

id item
1 Apple
2 Orange
3 Banana

I displayed all the items in HTML with PHP

<form>
while ($row=mysql_fetch_array($query)) {
$item=$row["item"];
echo "
<table>
<tr><td><input type=text value=$item name=item>
</td>
</tr>
</table>";
};
</form>

Now if I want to capture Banana or any other particular item from the
displayed HTML form, and pass the variable to the next form, how can I do
it?

Looking forward to hearing from you all.

Warm Regards,
DT

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>