recset Posted September 1, 2006 Share Posted September 1, 2006 I am trying to store multiple selections from a List Menu into one db field, but I get an error msg everytime I try. Here is a snippet of code:$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;[b]-- this line is where the error is and[/b]<select name="NOTES[]" size="10" multiple="multiple" id="NOTES">[b]-- this is the line of my List menu[/b]<?phpif (isset($_POST['NOTES'])) { foreach ($_POST['NOTES'] as $value) { echo "$value<br />\n"; }}?>[b]-- This piece of code allows for the array[/b]Can any one assist with this problem please?Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.