i tried the following, but did not work
Code: Select all
$to = $a1[email];
$to .= "myemail@myemail.com";can anyone help?
thanx
Moderator: General Moderators
Code: Select all
$to = $a1[email];
$to .= "myemail@myemail.com";Code: Select all
<?php $to = $a1['email']. ", myemail@myemail.com"; ?>