PHP 邮件程序会话问题
我们正在尝试实现一个带有附件上传选项的邮件程序。
它在我上传到的两台服务器上运行良好。
但是,它似乎不适用于我的本地主机 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
短开路标签可能会被关闭。解决此问题的最简单方法是查找并替换并将
更改为
。
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.
检查该脚本是否确实由 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 withshort_open_tag
enabled.你关闭了短标签,这就是为什么你必须在 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