cURL post not working PHP

前端 未结 5 1410
感情败类
感情败类 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:57

    make your post data as:

    $data = array('codpes' => 'someLogin', 'senusu' => 'somePass', 'Submit' => '1');
    $postData = "";
    foreach( $data as $key => $val ) {
       $postData .=$key."=".$val."&";
    }
    $postData = rtrim($postData, "&");
    

    and change:

    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    

    to

    curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
    

提交回复
热议问题