Hi there is it possible to update multiple rows of a table using a while loop inside a hidden field???
[code]<?php if ((isset($_POST[“MM_update”])) && ($_POST[“MM_update”] == “form1”)) {
$updateSQL = sprintf(“UPDATE ships SET HealthA=%s WHERE ShipID=%s”,
GetSQLValueString($_POST[‘healtha’], “int”),
GetSQLValueString($_POST[‘shipid’], “text”)); ?>
If not how can i do this???
Thank You

