Jump to content

php mail


flemingmike

Recommended Posts

hello all, when i submit a radio button, it isnt passing through.  here is my radio code:

 

<td>
										<input type="radio" value="monthly" name="po">Monthly
										<font size="2">(10 Payments)</font><br>
										<input type="radio" name="po" value="bimonthly">Bi-Monthly
										<font size="2">(5 Payments)</font></td>

 

 

here is my php email code:

 

 

$po = $_POST['po'];

$mailbody .= "Payment Type - $po\n";
$mailbody .= "Notes - $notes\n";


mail($mailto, $mailsubj, $mailbody, $mailhead);

 

 

it passes through all other fields, and emails, just not the radio buttons.

 

 

any help is appreciated.

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/206119-php-mail/
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.