this code
<?
$linkaddress = ('1234');
$clientsemail = ('olympic@mechan.freeserve.com');
$and = ('<A
href=http://www.morgle.com/mymorglemailer.php?mylinkaddress='. $linkaddress.'&calledemailaddress='.$clientsemail. '>test combined url</A> ');
echo ($and);
exit;
?>
works fine for me; HTML output:
<A
href=http://www.morgle.com/mymorglemailer.php?mylinkaddress=1234&calledemailaddress=olympic@mechan.freeserve.com>test combined url</A>
nevertheless i would really urge you to do something about the email address passed on like this... an "@" in the url can cause your address to behave completely different that youd like it to (i.e. ignore everything before the "@")
do it like this:
$linkaddress = ('1234');
$clientsemail = urlencode("olympic@mechan.freeserve.com");
and in mymorglemailer.php:
$calledemailaddress = urldecode($calledemailaddress);
hope that helps!
sid