gpt4 book ai didi

php - 将记录发送到服务器数据库中自定义创建的 Prestashop 表

转载 作者:行者123 更新时间:2023-11-30 00:54:48 24 4
gpt4 key购买 nike

我想知道是否有一种方法可以更改 Prestashop .tpl 文件,以便插入一个表单,该表单将根据“运输”选项卡中的销售情况获取用户输入/详细信息,并将其信息发送到自定义创建的表在 Prestashop 数据库中,无需创建模块

干杯

最佳答案

在“order-carrier.tpl”文件中,我尝试插入自己的 php block 以写入 Prestashop 服务器中的定制数据库。它看起来像这样:

{literal}
function acceptCGV()
{
if ($('#cgv').length && !$('input#cgv:checked').length)
{
alert(msg);
return false;
}
else
return true;
<!-- Inserting function to write to database
{php}
$recipient_details = array(
'rep_id' => (int)0001,
);
Db::getInstance()->insert("ps_rep", $recipient_details);
{/php} -->
}
{/literal}
//]]>
</script>

所以当用户点击下一步支付时,我希望它发送数据

关于php - 将记录发送到服务器数据库中自定义创建的 Prestashop 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20672607/

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