Posted by BLob on 12/07/05 16:56
I am using htmlMimeMail (from www.phpguru.org) to send a confirmation email
to the user. The message has to have some links with parameters like this:
<a href="urltomysite/confirm.php?a=6987456">confirm</a>. But when I look at
the email it has
<a href=3D"urltomysite/confirm.php?a=3D6987456">confirm</a>
Wich means that confirm.php receives $a = "3D6987456" instead of $a =
"6987456".
How can I avoid this ? Of couse I could do $a = str_replace("3D", "", $a);
But I would like something general and better.
Any help ?
Nicolas
[Back to original message]
|