i need to send an e-mail (i´m using mail()), i need to send all the entries in an array, how can i get all entries out of the array and into the message of my e-mail?
use a loop.
perhaps something like.....
$message = ""; foreach($array as $key => $value) { $message .= $key." => ".$value."/n"; }