在按钮单击时将表值传递给表单

时间:2013-08-10 20:35:46

标签: php function get

我是新来的,也不懂PHP。

我有一个项目,其中有一个表在一个单元格中包含一个Buy按钮,在另一个单元格中有一个值。

我想这样,当用户点击“购买”时,它的值会传递给联系表单。 例如:?buyrate = {table from table cell}

我已经让表单工作以从URL接收值。 例如:?buyrate = 25。表单字段的值为25。

但我不知道如何从单元格中获取值,以便管理员可以更改值,并且不需要每次都更改Button URL。

请帮助任何人。

由于

2 个答案:

答案 0 :(得分:0)

由于您已经从URL获得了买入(我假设来自$ _GET即$buyrate = $_GET['buyrate'];),为什么不在按钮代码中使用该值,例如:

<input type="submit" name="buyrate" value="<?php echo $buyrate; ?>" />

在没有看到代码的情况下,我们不确定您还想提交什么,但是这应该将该值传递给您的表单操作。

答案 1 :(得分:0)

您需要通过jquery将数据发送到联系表单,如

//include jquery.js here

<script>
$(document).ready(function(){
 $('#but').click(function(){
  var val=$('#v').html();
  window.location.href="somepage.php?buyrate="+val;
 });
});
</script>
<table>
<tr><td id="but"><button value="Buy" /></td></tr>
<tr><td id="v">60</td></tr>
</table>

//this is just an example you can modify the code as per your conditions and requirements.