Hi all,
I have an email in utf-8 encoding. In the content of the email, I need
to send a link in which the filename is in utf-8 string...just like
this..
$content = "<a href=\"http://xxxxxx/".$filename."\" ">Link to file</a>";
however, the link can not be correctly passsed and it automatically
encodes it into %xx format. How to solve the problem?
I've tried urlencode($file name) and urldecode($file name) but cannot fix
the problem... Need Help~Thx
I have an email in utf-8 encoding. In the content of the email, I need
to send a link in which the filename is in utf-8 string...just like
this..
$content = "<a href=\"http://xxxxxx/".$filename."\" ">Link to file</a>";
however, the link can not be correctly passsed and it automatically
encodes it into %xx format. How to solve the problem?
I've tried urlencode($file name) and urldecode($file name) but cannot fix
the problem... Need Help~Thx
Comment