url - Querystring manipulation of email Address in PHP -
i using third party application (email2http) send me emailid, body , message. unable retrieve email id due name appended on , enclosed < , >. here querystring getting.
test.php?from=ajay+reddy &subject=cx&body=somebody
when print variable in php returns name , not email id.
$from = $_get['from']; echo $from;
//output ajay reddy
please suggest me how can emailid also.
i dont want use post method due testing , debugging.
it's working fine. forgot use htmlentities()
in debugging.
Comments
Post a Comment