[snip]
I put the whole code in .txt version at 
http://www.primarywave.com/NONworkingCODE.txt
I gave group & global Writing permission aswell, edit if you like.
[/snip]

In the form you have name="InterestedNumber[]" in the e-mail bit you
have $SelectedNumber. Change them to match. If you want to print the
whole array of InterestedNumber....(showing one line above and one line
below at line 34)

$mailBody .= "Main Activities:  $activities\n\n";
for($i = 0; $i < count($InterestedNumber); $i++){
        $mailBody .= "SelectedNumber: " . $InterestedNumber[$i] . "\n";
}
$mailBody .= "Comments:  $comments\n\n\n";

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to