我有这个while循环,它将一个表格回显到页面上。
所以这个页面基本上都是来自数据库的所有行,(有点像带帖子的新闻源)
我在表单末尾有一个按钮,可让用户回复此帖子。
如何设置变量,从他们点击的任何帖子中获取值,并将它们带到一个新的PHP文档,该文档是用户可以填写另一个表单的应用程序页面。
let cell = tableView.dequeueReusableCell(withIdentifier: "CellComment", for: indexPath ) as! commentCell
答案 0 :(得分:0)
您的Feed数据库表可能包含id列或其他唯一标识符。
然后将按钮设为链接或将其转换为链接并将其设置为按钮。目前您的按钮可能如下所示:
echo '<button class="button button-block" name="apply" onclick="location.href=\'http://your_domain.com/feed_apply.php?id='.$row["feed_id"].'\';" />Apply to collaborate</button>';
然后在您的feed_apply.php中,您可以像这样获取该ID:
$feed_id = $_GET['id'];
$feed_data = [];
// query your database to set $feed_data
现在,您可以预先填写或使用申请表中的其他数据。
答案 1 :(得分:0)
为什么不用带有邮政编码的GET参数的href链接替换该按钮,然后在处理页面上用新表格检索帖子ID及其信息?