1

这可能是我曾经问过的最愚蠢的问题,但我找不到解决方案......

我正在处理电子邮件通知,但我不想编写通知,而是想在我的网站上向用户显示他们的通知列表。

现在在我的电子邮件中,我正在使用:

<iframe width=100%; height:100% src='http://www.mysite.com/newsfeed/index.php?email=true&user=".$to_id."&notification_type=messages'/>

但我的电子邮件客户端 (mail.app) 不断将 ¬ification_type 中的&no变成特殊字符...

任何不涉及更改 index.php 中的 $_GET 变量的想法?

4

2 回答 2

5

您还需要在 url 中使用 html 特殊字符:

采用<a href=".&amp;user=....&amp;notification_type=.." >

于 2012-05-13T17:50:24.907 回答
0

用这个&amp;代替这个&

于 2012-05-13T17:51:10.093 回答