Date: 07/16/01
- Next message: Dennis Kaandorp: "[PHP] Re: Question about strlen I think"
- Previous message: Nuno Silva: "Re: [PHP] but mysql? (was: postgres and php)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Dennis Kaandorp: "[PHP] Re: Question about strlen I think"
- Previous message: Nuno Silva: "Re: [PHP] but mysql? (was: postgres and php)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

