嘿,我在尝试回复像这样的链接时一直遇到404错误:
echo '<iframe src="<?php echo $row["link"]; ?>"></iframe>';
有人可以帮忙吗?
我在html中收到的输出是:
“&GT;
和404错误
答案 0 :(得分:1)
试试这个。
echo '<iframe src="' . $row["link"] .'"></iframe>';
低于一个人将不会做一些有意义的事情,这与你所写的大致相同。
echo "<?php /* some php code here */ ?>"
答案 1 :(得分:0)
只有双倍的&#34;&#34;将变量嵌入到字符串中。你也不能在回声中回声
所以改成它
echo "<iframe src='{$row["link"]}'></iframe>";
或
echo '<iframe src="'.$row["link"].'"></iframe>';