Question : How to send form results in Dreamweaver Php to more than one address

How do I code the Php file in Dreamweaver 8 to send the form results to more than one email address?

I have no problem sending to one address.

Thanks
Bob

Answer : How to send form results in Dreamweaver Php to more than one address

I played around and got it to work.
I added a comma then the new address.
It works.
Thanks for your time.

/ Your email address. This is where the form information will be sent.
$emailadd = '[email protected]';

Change to line:
// Your email address. This is where the form information will be sent.
$emailadd = '[email protected],[email protected]';
Random Solutions  
 
programming4us programming4us