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]
- Re: [PHP] date("t") Toby Butzon
- Re: [PHP] date("t") Maurice Rickard
- [PHP] Question Deependra B. Tandukar
- [PHP] mysql_fetch_array() Deependra B. Tandukar
- RE: [PHP] mysql_fetch_array() Tyler Longren
- Re: [PHP] mysql_fetch_array() David Robley
- [PHP] Is it possible? Deependra B. Tandukar
- Re: [PHP] Is it possible? Luke Welling
- Re: [PHP] Is it possible? Deependra B. Tandukar
- Re: [PHP] Is it possible? Philip Olson
- [PHP] MySQL Query..... Deependra B. Tandukar
- [PHP] MySQL Query..... Deependra B. Tandukar
- Re: [PHP] MySQL Query..... py_sympatico
- Re: [PHP] MySQL Query..... Deependra B. Tandukar
- [PHP] Weekly Separation Chris Aitken
- Re: [PHP] MySQL Query..... Deependra B. Tandukar
- [PHP] PHP 4 released date Deependra B. Tandukar
- Re: [PHP] PHP 4 released date ReDucTor
- [PHP] Directory Contents Listing Deependra B. Tandukar
- Re: [PHP] Directory Contents Listing Steve Werby

