我在浏览器上有这样的表
Name | Action |
________________________
Septiyo | Edit | Delete |
Fahmi | Edit | Delete |
Tejo | Edit | Delete |
对于编辑,通常我使用这样的链接
echo "<a href='edit.PHP?ID=$data['ID']'>Edit</a>";
问题是,如果我用Button html更改链接.我怎样才能包含变量?
我的按钮是这样的
echo "<input type='button' value='Edit' onclick='window.location=edit.PHP?ID=$data['ID']'>";
它不起作用.
谁能帮我?
我非常感谢你的答案.
谢谢.
解决方法:
为什么不将你的按钮包裹在< a>将href设置为PHP页面?
像这样:
echo <a href=yourPage.PHP><input type="button" value="Edit"></a>