如何使用Ajax将PHP添加到购物车中?

时间:2019-06-11 06:02:20

标签: php ajax cart

我有一个可过滤音频文件的代码,如何添加购物车功能?

我的index.php文件:

https://www.pastiebin.com/5cff432c06f57

和我的fetch_data.php文件,

https://www.pastiebin.com/5cff436697ed2

在这里,如果我单击添加到播放列表按钮,则根据hello.php文件显示警报(只是回显消息),在这里如何将我的ID和名称保存到hello.php页面中像购物车页面一样,如果我单击添加到播放列表按钮,则需要将我的ID和名称保存到hello.php页面中。

当前输出:

output

1 个答案:

答案 0 :(得分:0)

在您的Button onClick上,添加新功能,例如addCart()

<button type="button" class="btn btn-primary" type="submit" style="padding: 5px 83px 5px 83px;" onclick="addCart(<?php echo $row['voice_id']; ?>); " >Add to PlayList </button>

然后您的脚本应该像调用ajax

<script>
function addCart(id) {

$.ajax({
            type: 'POST',
            url: 'hello.php',
            dataType: 'html',
            data : {id: id}, // pass id to the php
            success: function(data) {
                alert(data);


            }
        });
}

和您的hello.php

<?php

 $id = $_POST['id'];
 //code to save it to databse table
?>