-1

我需要在每个链接上创建包含具有不同名称的隐藏输入的链接。

 <?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 中的输入值?感谢您的任何帮助。

4

1 回答 1

2

不要将输入放置在锚标记中。使用查询字符串传递值。

<a href="read.php?name=rec<?=$inputCounter?>&value=<?=$id?>">read</a>

然后read.php,使用 . 读取您的数据$_GET

$name = $_GET['name'] // gives you the name
$value = $_GET['value'] // gives you the value

要回显该值,只需执行

echo $value;
于 2013-04-03T16:34:33.883 回答