To anyone who can help.. thank you, thank you!
Here is my deal: I am selecting items out of one database and displaying the items in a form like so:
$result = mysql_query("SELECT * FROM iteminfo where url= 'secure.northrim.net/e3/rms' order by item");
while ($rowarray = mysql_fetch_array($result))
{ echo"
$rowarray[item] <input type=\"checkbox\" name=\"number[]\" value=\"1\"><br>
";}
Then, I need to insert any items that they have checked into another database, but I don't know how to check for a checked item utilizing arrays... How can I check against each variable for a value of 1.
Again.. thanks for any help.. its much appreciated.. cj