更新codeigniter购物车而不直接使用$ _POST

时间:2014-03-12 04:15:15

标签: php codeigniter

我想出了使用codeigniter页面上的默认代码.... here如何使用直接$_POST内容更新购物车。

function update() {

    $data = $_POST;

    $this->cart->update($data);

    redirect('/cart', 'refresh');
}

我如何不使用直接发布变量,因为它不安全?

$ _ POST var_dumps()如下面的数组:

array(1) { [1]=> array(2) { ["rowid"]=> string(32) "88a180b440d9f4b69e09296c60095867" ["qty"]=> string(1) "1" } }

1 个答案:

答案 0 :(得分:0)

如何通过邮寄更新购物车?但是,如果您不想刷新页面,可以使用Ajax / Jquery更新购物车,请参阅下面的链接,它可以帮助您

http://ellislab.com/forums/viewthread/173140/

Update cart using jquery and codeigniter