Hi, I read the article about <SELECT MULTIPLE> forms and calling them as an array. Well I can call them as an array no problem, but I want to enter the selected itmes into the DB separately. Here's what I have... $category is the SELECT MULTIPLE form
//connect to db code ,, yada yada
while(list($key,$val) = each($category)) {
$category2DB = "INSERT INTO gsd_category (id, category) VALUES ('$thisid', '$category[$key]')";
$resultcat = mysql_query($category2D😎;
}
After I run this, it will only enter the first array entry. The rest don't get entered into the DB. Any ideas?