How can I get this format:
{ "products": [ { "id": 4, "link": "/product.php?id_product=4", "quantity": 1, "priceByLine": "$185.00", "name": "Orci hendrer...", "price": "$185.00", "idCombination": 0, "hasAttributes": false, "hasCustomizedDatas": false, "customizedDatas":[ ] }, { "id": 5, "link": "/product.php?id_product=5", "quantity": 1, "priceByLine": "$215.00", "name": "Semper rutru...", "price": "$215.00", "idCombination": 0, "hasAttributes": false, "hasCustomizedDatas": false, "customizedDatas":[ ] }], } as a PHP array? I've tried
$array[] = array('id'=>5, link => 'product.php?id_product=5' ... and so on) but when I encode with JSON it doesn't work.