单击每个按钮提交表单

时间:2012-07-09 09:22:39

标签: php html

我的代码是

<form action="test.php" name="test">
<?php foreach($result as $res)
{
 ?>
  <div>
  <label><?php echo $res->name;?></label>
    <input type="text" name="<?php echo $res->val;?>">
    <input type="submit" value="submit" />
  </div>
<?php }
?>
</form>

我需要为每个提交按钮执行相同的操作,每当用户点击它时,都应调用操作test.php。 我试过这样但是不起作用。请帮忙。

2 个答案:

答案 0 :(得分:1)

对于每次提交,您需要一个不同的表单。你走了:

<?php foreach($result as $res)
{
echo "<form action=\"test.php\" name=\"".$res->name."\">";
 ?>
  <div>
  <label><?php echo $res->name;?></label>
  <input type="text" name="<php echo $res->val;?>">
  <input type="submit" value="submit"
  </div>
<?php
echo "</form>";
 }
?>

答案 1 :(得分:0)