制作 HTML/PHP 链接
我有下面的代码:
$result = mysql_query("SELECT link, notes FROM links WHERE username='will';");
$html .= "<ul>";
while ($row = mysql_fetch_array($result)) { //loop
extract($row);
$html .= "<li>{$link} - {$notes}</li>";
}
我需要将 {$link}
部分变为可打开新窗口的可点击链接。我该怎么做?
当我在它周围放置标签时,您会收到此错误:
错误是:解析错误:语法错误,第 18 行 /data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/will.php 中意外的 '{'
第 18 行是$html .= "
I have the code below:
$result = mysql_query("SELECT link, notes FROM links WHERE username='will';");
$html .= "<ul>";
while ($row = mysql_fetch_array($result)) { //loop
extract($row);
$html .= "<li>{$link} - {$notes}</li>";
}
I need the bit where it says {$link}
to become a clickable link which opens a new window. How would I do this?
When I put tags around it you get this error:
The error is: Parse error: syntax error, unexpected '{' in /data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/will.php on line 18
Line 18 is $html .= "<li>{$link} - {$notes}</li>";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一般来说,您创建的链接如下:
链接标题
。所以在你的情况下是这样的:In general you make a link like this:
<a href="URL">link title</a>
. So in your case like this:首先创建正确的代码并进行错误处理,然后将变量设置在引号之外。
First create a correct code and make error handeling, than set variables outside quotes.
如果您的 $link 包含格式为“http://www.example.com/”的网址,请使用这:
if your $link contains an url in the form "http://www.example.com/", use this: