你好,我对这个项目非常执着。我有这样的形式,可以像这样回显用户的ID
<form method="GET" action="../download_form.php"id="<?php echo
$row["id"]; ?>">
<button class="btn-md" type="submit" >
<input type="button" name="view" value="Download" class="btn-xs" />
</form></td>
然后我有这个download_form.php
$stmt = $pdo->prepare("SELECT * FROM q1 WHERE id=(the id of the form from
another page)");
我想从db中选择表,其中id =另一页中表单的ID 请帮忙。