Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是如果可能,我如何填写付款表格上的描述字段,并使用我的 slq 数据库中的参考号?
谢谢你。
您可以尝试类似以下查询来定义描述:
<?php $product = SELECT desc FROM table WHERE id = 'x'; ?>
然后使用 $product 变量填充“item_name”的值或与您正在使用的产品匹配的项目描述的任何变量。我不知道您使用的是哪种付款方式,所以我不能更具体。