我有一个php for循环,在php for循环中,td标签内有一个按钮元素。我使用查询字符串将按钮Id从一个页面传递到另一个页面。
第1页:
$id = $data['no'];
<td><button class="btn btn-primary btn-small"><a href="votingPoll.php?'.$str.'">SUBMIT</a></button></td>
要获取按钮ID的值,我在第2页中有此代码:
$id = $_GET['str'];
但出于某种原因,它给了我一个未定义变量的错误&#39; str&#39;在第2页。
答案 0 :(得分:1)
将您的代码更改为:
<td><button class="btn btn-primary btn-small"><a href="votingPoll.php?id='.$id .'">SUBMIT</a></button></td>
在yourpage.php或您希望接收数据的任何文件上,使用$_GET['id']