如何在新窗口中打开PHP图像链接

时间:2013-09-18 10:56:45

标签: php html database image hyperlink

我已经制作了一个php链接,但是我希望它在新窗口中以特定大小打开。可以从这里提出任何建议吗?链接是图像。

echo "<td><center><a href=\"edituser.php?id=$row[id]\"><img src=image/edit.png></a></center></td>";

链接与数据库连接。它将打开一个表单来编辑用户数据。

4 个答案:

答案 0 :(得分:4)

要在新窗口中打开,您必须将标记添加到标记中,例如:

<a href="http://example.com" target="_blank">Example Link</a>

要配置它打开的大小,afaik你必须使用javascript,

<a href="http://example.com" onclick="window.open(this.href, '_blank', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;">Example Link</a>

这是JS Fiddle

答案 1 :(得分:1)

试试这个

echo "<td><center><a target='_blank' href=\"edituser.php?id=$row[id]\"><img src=image/edit.png></a></center></td>";

答案 2 :(得分:0)

这应该在一个新窗口中打开它:

<a target="_blank" href=\"edituser.php?id=$row[id]\"><img  width="200" height="150" src=image/edit.png></a>

您可以将“width”和“height”属性添加到“img”标记。

答案 3 :(得分:0)

我尝试了上面的代码,但是没有用。而不是“_blank”,我使用了“新”

echo '<a href="www.google.com" target="new" > <img src="small.jpg"></a></div>';

我对这句话不太确定。你可以测试一下。