Instead of putting your message in your code like that, why not just put
it in a seperate text file and do: $message = implode(" ",
file("./message")); ? This will make your code look cleaner. So you
could create something like:
$message = implode(" ", file("./message1"));
if (isset($checkbox[0]))
{ $message .= implode(" ", file("./checkbox1")); }
$message .= implode(" ", file("./message2"));
foreach ($tipo as $key => $value)
{ echo $value . '<br>'; }
etc.
I noticed a lot of .s in your code. I know ;s end statements, but I
didn't know dots (concatenation operator) worked to do that as well.
Have you tried using semicolons?
-Dan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php