I am generating text boxes and check boxes as I move through a recordset.
echo "<td>".$i."</td><td><input name=UserName".$i." type=text onKeyPress=return noenter() size=20
value=".$row['UserName']."></td>";
echo "<td><input name=Password".$i." type=text onKeyPress=return noenter() size=20
value=".$row['Password']."></td>";
echo "<td><input name=InputDate".$i." type=text onKeyPress=return noenter() size=20
value=".$row['InputDate']."></td>";
echo "<td><Input name=deleteBox".$i." type=checkbox value=Delete>Delete</td>";
echo "<td><Input name=editBox".$i." type=checkbox value=Edit>Edit</td>";
This should be super simple, but I don't get it yet. I need to make the edit and delete checkboxes fire some code (preferably "do you want to edit / delete...")
I've not had any luck to this point with it.
Thanks
Jay