Skip to content

Tag: php

How to Start taobao API

I want to integrate taobao api in my website developed in PHP. I have searched about it but i did not get any details about it. Means any tutorial which explain How to create account on taobao How to register application for app key, secret etc From where to download the taobao sdk Any test call to taobao usi…

Starting Docker containers from PHP

When I attempt to startup a Docker container via PHP I get the following error I try to execute the docker run command via shell_exec so the executing user, on Ubuntu 14.04, is www-data. For good measure I tried to run the docker command as sudo but it made no difference. Googling around for “Are you tr…

PHP cURL: CURLOPT_CONNECTTIMEOUT vs CURLOPT_TIMEOUT

PHP has these two options related to timeout: CURLOPT_CONNECTTIMEOUT and CURLOPT_TIMEOUT. The descriptions on the PHP site are a bit vague. What’s the difference? To use a real world example: say you’re sending GET vars to a URL via cURL and you want to receive a XML back, would CURLOPT_CONNECTTIM…

Messaging system in php mysql

I created a simple messaging system on my website where new registered users can send message to one another. the following mysql statement works well on my site,but my problem is- when UserA sends a …

PHPExcel download using ajax call

App::import(‘Vendor’, ‘PHPExcel/Classes/PHPExcel’); $objPHPExcel = new PHPExcel(); $objPHPExcel->getActiveSheet()->setTitle(‘ReceivedMessages’); header(‘Content-Type: application/vnd.ms-excel’); …