Posts by GUILHERME SIMAO COSTA • 3 points
3 posts
-
0
votes2
answers597
viewsA: Curl is not working on my localhost
I made following code: curl_setopt($ch, CURLOPT_POSTFIELDS, $payload ); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json;charset=UTF-8')); curl_setopt($ch, CURLOPT_URL,…
-
0
votes2
answers597
viewsQ: Curl is not working on my localhost
I have a code in PHP to list a stock in OLX. In production it works perfectly. at Curl location is not working at all. $url = 'https://apps.olx.com.br/autoupload/published'; $ch = curl_init($url);…
-
0
votes0
answers46
viewsQ: Problem to create Database with Mysql variable
I have a problem to create a database in Mysql. The term is as follows:. CREATE PROCEDURE trata_busca() BEGIN DECLARE excessao INT default 0; <--- LINHA QUE ESTA APONTANDO PROBLEMA DECLARE…