将PHP变量发送到POST

时间:2017-06-23 08:56:49

标签: php

我的代码是这样的:

$run = $dbcon->query("SELECT * FROM sometable");
  while ($beef = $run->fetch_assoc()){
    $theid = $beef['id'];
    $patty = $beef['part'];
    $current = POST['$theid'];

    echo "<form name='$theid'>$patty</form>";
  }

这段代码要做的是回复尽可能多的表单,就像我在sometablepart中有行一样,并在我的HTML中显示它们(我想它提到这是不合适的HTML。希望据了解,对于这个例子,它不是重点。

现在,我想添加类似$current = $_POST['$theid']的内容,以便在进行db调用时,我可以区分行id的各种echo实例。我希望我的$current变量能够保存id的正确实例。

我如何实现这一目标?是必要的循环吗?如果是这样,那看起来怎么样?

1 个答案:

答案 0 :(得分:3)

第一:简单地将其添加到hidden input字段

第二次:需要each form

的提交按钮

<强>形式:

  echo "<form name='$theid'>
         <input type='hidden' name='id' value='".$theid."' />
         <input type='submit' name='submit' value='submit' />
         </form>";