所以我有一个网站(没有开发它),你有这样的网址:
http://mysite.com/profile-user/profile/nameOfUser
这是一个使用 Zend 开发的站点,我已经不喜欢 url 配置,我认为它很冗长,但这不是真正的问题。
如果我这样做:
http://mysite.com/profile-user/profile/'
在用户名中添加单引号,我收到一堆 zend 错误消息:
Exception information:
Message: Mysqli prepare error: You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version for the
right syntax to use near '''') LIMIT 1' at line 1
Stack trace:
然后跟随堆栈跟踪
然后
Request Parameters:
array (
'profil' => '\'',
'module' => 'default',
'controller' => 'journalentrepreneur',
'action' => 'index',
'tab' => 'profil',
)
那应该是什么意思?
谢谢