ok...i want this to be many records...
// multiple saves...
if ($submit) {
$result = mysql_query ("UPDATE main SET id='$id', admin2='$admin2' WHERE id='$id'") or die ("Problems 1!");
header("Location: main.php");
}
any my loop with the data...
weird...this board is messing with the code...hmmm...just pretend the below info is fine...it's the smaller issue...
<? do { ?>
<input name="admin2" type="checkbox" value="1" checked>
http://www.somesite.com/path/to.php?id=<? echo $row['id']; ?><br>
<? } while($row = mysql_fetch_array($query));?><br>
<input type="submit" name="Submit" value="Submit">
now...i'm a little lost...do i need to loop the query? and...how might i do this? and how does "submiit" know which ones it's updating...???
thanks...jv