PHP 邮件程序会话问题

发布于 2024-10-05 22:18:07 字数 261 浏览 3 评论 0原文

我们正在尝试实现一个带有附件上传选项的邮件程序。

它在我上传到的两台服务器上运行良好。

但是,它似乎不适用于我的本地主机 wamp 服务器,甚至在不同的服务器上: http://203.76.126.68/mailer/

为什么我会在文本框中看到会话值? 谁能指出似乎有什么问题吗?

任何帮助将不胜感激。

谢谢!

We are trying to implement a mailer with an attachment upload option.

It's working great on two of the servers I've uploaded it to.

However, it does not seem to work on my localhost wamp server or even on a different server:
http://203.76.126.68/mailer/

Why am I seeing session values inside the text boxes?
Can anyone point out what seems to be the problem?

Any help would be appreciated.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

逐鹿 2024-10-12 22:18:07

短开路标签可能会被关闭。解决此问题的最简单方法是查找并替换并将 更改为

http://php.net/manual/en/ini .core.php#ini.short-open-tag

您也可以在 php.ini 中打开它(可能在 .htaccess 中)。

Short Open Tags might be turned off. The easiest way to fix this is to just do a find and replace and change <?= into <?php echo.

http://php.net/manual/en/ini.core.php#ini.short-open-tag

You can also turn it on (might be possible in .htaccess) in php.ini.

单挑你×的.吻 2024-10-12 22:18:07

检查该脚本是否确实由 PHP 处理。

如果它由 PHP CGI 二进制文件处理,请确保将 short_open_tag 设置为On。这些 东西仅在启用 short_open_tag 的情况下工作。

Check if that script is actually processed by PHP.

If it is process by the PHP CGI binary, make sure short_open_tag is set to On. Those <?= ... ?> thingies only work with short_open_tag enabled.

北斗星光 2024-10-12 22:18:07

你关闭了短标签,这就是为什么你必须在 php ini 中将其设置为打开,或者我认为你可以使用 wamp 菜单,然后设置,然后打开短标签

you have shorttags off that's why you have to set it on in php ini or i think you can use the wamp menu and then setting and then turn on shorttags

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文