Skip to content

Instantly share code, notes, and snippets.

View erratumsolutions's full-sized avatar
🏠
Working from home

Erratum Solutions erratumsolutions

🏠
Working from home
View GitHub Profile
@erratumsolutions
erratumsolutions / CG - AddBulkItems.md
Last active January 26, 2021 16:16
PHP code to place multiple items [Calicut Grocers]
<?php

// 1st we need to generate an order reference ID 
$sURL = 'https://store.calicutgrocers.com/index.php?route=checkout/cart/genOrderRef';

$varOrderItems[0] = array("fname" => "Ajmal", "lname" => "Muhammad P", "email" => "myemail@gmail.com", "phone" => "9876543210", "hname" => "Thaiff, 8/295", "landmark" => "Near School", "address" => "Beach Road", "city" => "Calicut", "pincode" => "673032");
$varOrderItems[1] = array("pid" => 180, "qty" => 2, "opt" => "2kg");
$varOrderItems[2] = array("pid" => 208, "qty" => 3, "opt" => "500g");