我已成功显示来自mysql查询的数据。但是有一个url连接到已存储在mysql数据库中的文件。但是我需要将基于文本的文本更改为按钮。这是我的剧本:
<td align="center"><a href='<?php echo $res['url_new_edition'] ?>'>New Edition</a></td>
现在我想将“新版”文本更改为按钮/链接中的链接/网址。我已经尝试添加'class = button',类型='按钮'等但没有工作。
答案 0 :(得分:1)
试试这个
<input type="button" onclick="window.location.href='http://google.com'; return false;">
在你的情况下
<input type="button" onclick="window.location.href='<?php echo $res['url_new_edition'] ?>'; return false;">
答案 1 :(得分:0)
如果需要按钮,请使用表单而不是href。一个没有JavaScript的明确解决方案看起来像这样:
<form action="<?php echo $res['url_new_edition']; ?>" method="get">
<input type="submit" value="New Edition" />
</form>