sanchez77 Posted October 27, 2009 Share Posted October 27, 2009 so I have an HTML form with a list element that returns an arrays. Ok, so dumb question. When the form is processed, it sends an email that contains the value from the form, but this element returns the printed value "Array" not the values selected. So how does a foreach function work in this case. the form is form, the list value id has [ ] in it. the php is this, and the printed value is "Array" not the selction. $value = $_POST['selected']; $body .= "Values: ".$value."\n"; foreach ($value as $v) { echo "$v<br />";} mail( "email@mail.com", "Form", $body, $message, "From: <email@mail.com>"); please help me understand, thanks Quote Link to comment https://forums.phpfreaks.com/topic/179127-solved-foreach-form-return/ Share on other sites More sharing options...
Alex Posted October 27, 2009 Share Posted October 27, 2009 In this case $_POST['selected'] is an Array, so you're doing to want to loop through that. $value = $_POST['selected']; foreach($value as $val) { $body .= "$val<br />\n"; } Quote Link to comment https://forums.phpfreaks.com/topic/179127-solved-foreach-form-return/#findComment-945077 Share on other sites More sharing options...
sanchez77 Posted October 27, 2009 Author Share Posted October 27, 2009 excellent, i understand now. thank you very much. Quote Link to comment https://forums.phpfreaks.com/topic/179127-solved-foreach-form-return/#findComment-945078 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.