codeigniter url 链接不可点击
当我在视图中输出数据库内容并
site: <?php echo $profile['site']; ?> <br/>
得到回显
http://facebook.com
但无法单击链接时,我在数据库中有一个名为“网站”的字段,我还在配置文件中全局禁用了 xss 过滤。在我的验证中我只使用了这个
$this->form_validation->set_rules('site', 'Website', 'min_length[5]|max_length[160]');
请帮忙
I have a field in a db called 'website' when i output the database content in a view with
site: <?php echo $profile['site']; ?> <br/>
i get echo
http://facebook.com
but cannot click the link, I have also disabled xss filtering globally in config file. in my validation i have used only this
$this->form_validation->set_rules('site', 'Website', 'min_length[5]|max_length[160]');
please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅当链接格式设置为链接时才可单击。您需要在其周围放置适当的 html 才能实现这一点。
A link only becomes clickable if it's formatted as one. You will need to put the appropriate html around it to make that happen.
以 CodeIgniter 方式(使用 URL helper),它看起来像:
in CodeIgniter way (using URL helper) it will looks like:
使用 URL 帮助器并使用anchor() 函数将变量转换为链接。
在控制器中:
在视图中:
use the URL helper and use the anchor() function to turn the variable into a link.
in the controller:
in the view: