"Esteban Fernandez" <efern...@tecsol.cl> escribió en el mensaje
news:2003062020230...@pb1.pair.com...
> Put the code in a Form tag, modified thevalues, and put a submit button in
> the Form, so, in the php page you get it the values by name, you can
> modified with 'update' mysql sentence.
>
>
> "Matt Hedges" <ma...@hedges.org> escribió en el mensaje
> news:2003062020191...@pb1.pair.com...
> > Please take a look at http://hedges.org/code/wine.php - You'll see what
I
> > can't figure out how to do.
> >
> >
> > thanks,
> > Matt
> >
> >
> >
>
>
then try maybe
foreach ($_POST['id'] as $key=>$value) {
//sql statement
update table set us=$_POST['us'][$key] where id=$_POST['id'][$key];
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php