使从数据库中提取的链接处于活动状态
我正在创建一个社交网络,在用户信息部分,我让用户可以通过输入表单将 Facebook 链接添加到数据库表中。 现在,当他们添加此链接时,它将其发送到数据库,然后返回并将提交的数据回显到用户信息页面和用户状态流中,这使得其他人可以看到新更新的信息。
唯一的问题是,提交的链接在从数据库返回时不处于活动状态,无论如何,在我的页面中或在数据库中,我可以告诉这是一个活动链接,甚至可能是一些检测非活动链接的 JavaScript?
任何帮助将不胜感激。
谢谢,
I'm creating a social network, and in the user info section I've made it possible for the user to add there Facebook link into the database table via a input form.
Now when they add this link, it sends it to the database and then it returns and echo's out the submitted data into both the user info page and the user status stream, this enables others can see there newly updated info.
Only problem is, the link submitted is not active when it returns from the database, is there anyway either in my page, or within the database, I can tell this to be an active link, maybe even some JavaScript that detects inactive links?
Any help would be greatly appreciated.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“使链接处于活动状态”是什么意思?
你用什么语言开发?
要使用数据库字段在 Web 浏览器中生成可单击链接,您需要创建 HTML 框架,然后将数据库输出插入到相关位置。
例如,在 PHP 中:
将创建一个可点击的链接,将访问者引导至
$linkURL
变量中的 URL。What do you mean by "make the link active"?
What language are you developing in?
To use a database field to generate a clickable link in a web browser, you create the HTML framework and then insert the database output into the relevant position.
In PHP, for instance:
Would create a clickable link which would direct visitors to the URL in the
$linkURL
variable.