1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How To Post Topic Vbulletin via Curl ?

Discussion in 'PHP' started by siverdragon12, Oct 1, 2013.

  1. #1
    My code to login and grab page content , how to post Topic into Vbulletin ?

    <?php
    
    function curl_login($url,$data){
          $ch = curl_init();
          curl_setopt($ch, CURLOPT_URL, $url);
          curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)');
          curl_setopt($ch, CURLOPT_POST, 1);
          curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
          curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
          curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
          curl_setopt($ch, CURLOPT_COOKIEFILE, 'C:/xampp/htdocs/curl/cookie/cookie.txt');
          curl_setopt($ch, CURLOPT_COOKIEJAR, 'C:/xampp/htdocs/curl/cookie/cookie.txt');
          $result = curl_exec($ch);
          curl_close($ch);
          return $result;
        }
     
     
    function curl_grab_page($site){
        global $url;
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)');
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($ch, CURLOPT_COOKIEFILE, 'C:/xampp/htdocs/curl/cookie/cookie.txt');
        curl_setopt($ch, CURLOPT_COOKIEJAR, 'C:/xampp/htdocs/curl/cookie/cookie.txt'); 
        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
        }
     
    
    ?>
    PHP:
    I need a functions curl to post topic into vbulletin 3.x or 4.x :)
    Need help :-s
     
    Last edited: Oct 1, 2013
    siverdragon12, Oct 1, 2013 IP