cURL post not working PHP

前端 未结 5 1402
感情败类
感情败类 2021-01-01 00:11

I\'m having trouble using cURL for a specific page.

A live code working: http://svgen.com/jupiter.php

Here is my code:

    $url = \'https://u         


        
5条回答
  •  感动是毒
    2021-01-01 00:55

    $data = array('codpes' => 'someLogin', 'senusu' => 'somePass', 'Submit' => '1');
    

    should have been

    $data = http_build_query(array('codpes' => 'someLogin', 'senusu' => 'somePass', 'Submit' => '1'));
    

    It automatically url encodes your query string as well and is safer than manual methods..

提交回复
热议问题