Jump to content

[SOLVED] foreach form return ?


sanchez77

Recommended Posts

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 protected]", "Form", $body, $message, "From: <[email protected]>");

 

please help me understand, thanks

Link to comment
https://forums.phpfreaks.com/topic/179127-solved-foreach-form-return/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.