Search results

  1. L

    session_start() and session_destroy() functions

    //Step 1 To initialize curl $ch = curl_init(); //Step 2 To set url where you want to post $url = ‘http://www.localhost.com’; //Step 3 Set curl functions which are needs to you curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_POST,true)...
Back
Top