我需要在每个链接上创建包含具有不同名称的隐藏输入的链接。
<?php
$inputCounter=0;
.. do while...
{
$inputCounter++; ?>
<a href="read.php">
<input hidden name="rec<?php echo $inputCounter ;?>"
value="<?php echo $id' ;?>"/>
read
</a>
<?php } ?>
如何获取 read.php 中的输入值?感谢您的任何帮助。