> What do you mean with "update more "same" fields at the same time"?Can > you give us an example? > > Gvre >
<form name="form1" method="post" action=""> <? $query1 = "SELECT * FROM table where subcat = $_GET[a]"; $result1 = mysql_query($query1); while($row = mysql_fetch_object($result1)) { ?> <p> <input name="textfield" type="text" value="<? echo $row->oid; ?>"> <input name="textfield1" type="text" value="<? echo $row->url; ?>"> </p> <? } ?> <p> <input type="submit" name="Submit" value="Submit"> </p> </form> now i want to change values of texfields and update them back to mysql. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php