follow Category: Tramadol Order Online Canada Php

Get Zopim Chats data in webservice API

Here is the curl call for to get the chats for Zopim online live chat platform. List of Chats Done in zopim $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://www.zopim.com/api/v2/chats"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, …

jQuery validation plugin ajax validation

$("#addSkuForm").validate({ // Specify validation rules rules: { // The key name on the left side is the name attribute // of an input field. Validation rules are defined // on …

curl call in php with authorization headers

<?php $apiUrl = "URL"; $fields = json_encode(array()); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $apiUrl); curl_setopt($ch, CURLOPT_HTTPHEADER, ); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_TIMEOUT, …