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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to