PHP mail adds ';' to URL -
we got cronjob running in our mail server gives url code (of url) is:
<a href=\"http://domain.com/?page=show_user&id=".$account->id."\">http://domain.com/?page=show_user&id=".$account->id."</a>
when cronjob progresses , mail, url shows like:
http://domain.com/?page=show_user&id;=1
so cron adds additional ;
code don't want.
i tried already:
http://domain.com/?page=show_user&id=
but still no succes, anyway 'strip' semicolon or prevent it?
i think problem cron job tries handle &id html entity (which should end ";"). maybe should use html entities in html code, cron job recognize them.
url should
<a href=\"http://domain.com/?page=show_user&id=".$account->id."\">http://domain.com/?page=show_user&id=".$account->id."</a>
Comments
Post a Comment