gpt4 book ai didi

php - 如何从 html 输入添加变量并在从 mysql 数据提取的 url 中显示

转载 作者:行者123 更新时间:2023-11-29 12:37:01 27 4
gpt4 key购买 nike

我有一个使用 jquery、mysql 和 php 的页面。在页面中我有如下输入

<input type="text" name="numberid" id="textbox1" value="12345"  />

我正在尝试获取此信息 textbox1 并将其与从 mysql 数据库中提取的 php 语句结合起来,以创建一个重定向到站点的按钮。我已经完成了 url 并提取了 $item,但不知道如何将 textbox1 变量值附加到 ?Id=

之后的 url 末尾
           <span style="margin-left:10px;"><a href="http://www.example.com/<?php echo $item?>?Id=textbox1"><input type="button" class="btn btn-info edit" value="Share" style="width:100px; height:50px"  id="<?php echo $id; ?>"name="<?php echo $parent; ?>"></a></span>

最佳答案

使用这样的东西也许是一个类

<a class="pressthis" href="#" data-mhtml="put your html reference here" >

然后使用如下函数

$(".pressthis").click(function() {

var myhtml = $(this).data('mhtml');
myhtml = myhtml + "&yourtextbox=" + $textbox1.val();
window.location = myhtml
});

这将允许您使用同一函数处理任意数量的 html 链接,显然,如果您想在 html 末尾添加一些 id,例如文本框的内容,那么只需添加文本框到 myhtml 字符串

myhtml = myhtml + "&yourtextbox=" + $textbox1.val();

关于php - 如何从 html 输入添加变量并在从 mysql 数据提取的 url 中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26619360/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com