使用 PHP 从同一页面自动填充表单中的字段

发布于 2024-12-11 16:02:07 字数 416 浏览 0 评论 0原文

我只是想知道这是否可以用 PHP 来完成。我有一个目录 MySQL 数据库,使用 joomla,当客户进入一个项目时,有一个零件号、描述等......并且底部有一个表格,以便客户可以提交他们的询价。我想知道零件号字段是否可以自动填充,以便客户只需输入他们的姓名和电话号码,而不必担心零件号。请告诉我是否可以做到这一点,任何帮助将不胜感激!

请看一下这个,看看我的意思。

http://www.shoxwebdesign .com/edc2/aircraft-parts/catalog-2/details/2/91/catalog-2-edc001

I am just wondering if this could be done with PHP. I have a catalog MySQL database, using joomla, when a customer goes inside an item, there is a Part Number, Description, etc.... and on the bottom there is a form so customers can submit their RFQ's. I was wondering if the part number field, could be auto populated so customer can just put in their name and phone number and dont have to worry about the part number. Please let me know if this can be done, any help would be really appreciated!

please take a look at this to see what I mean.

http://www.shoxwebdesign.com/edc2/aircraft-parts/catalog-2/details/2/91/catalog-2-edc001

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月亮是我掰弯的 2024-12-18 16:02:07

您所要做的就是更改表单输入字段以包含一个值;

<input id="ff_elem6" class="ff_elem" type="text" value="" name="ff_nm_PartNumber[]">

例如

<input id="ff_elem6" class="ff_elem" type="text" value="<?php echo $varFromDB; ?>" name="ff_nm_PartNumber[]">

或者您可以将此数据放入隐藏字段中,

<input type="hidden" value="<?php echo $varFromDB; ?>" name="ff_nm_PartNumber[]">

All you have to do is to change your form input field to include a value;

<input id="ff_elem6" class="ff_elem" type="text" value="" name="ff_nm_PartNumber[]">

to

<input id="ff_elem6" class="ff_elem" type="text" value="<?php echo $varFromDB; ?>" name="ff_nm_PartNumber[]">

or you can put this data in a hidden field like

<input type="hidden" value="<?php echo $varFromDB; ?>" name="ff_nm_PartNumber[]">
乞讨 2024-12-18 16:02:07

当然...在您制作表单的地方,将 value 属性添加到文本字段,无论您想要什么值...

<input type="text" value="<?php echo 'some field pulled from mysql';?>"/>

definitely...where you're making the form, add the value attribute to the text fields, with whatever value you want...

<input type="text" value="<?php echo 'some field pulled from mysql';?>"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文