đHELP đ Me To Add ALTER In This PHP SCRIPT
//I just want Alter in the PHP Script because I don't know how to add it// Below is Code <?php error_reporting(0); echo "<meta http-equiv='refresh' content=100;' />"; $user_id = $_REQUEST['user_id']; $package_name = $_REQUEST['package_name']; $url1=" "; $data1=" "; $headers[]='Content-Tyep: application/x-www-form-urlencoded'; $headers[]='Content-Tyep: application/json; charset=utf-8'; $headers[]=' '; $headers[]='Host: '; $headers[]='Connection: Keep-Alive'; $ch=curl_init(); curl_setopt($ch, CURLOPT_URL,$url1); curl_setopt($ch, CURLOPT_HEADER,0); curl_setopt($ch, CURLOPT_HTTPHEADER,$headers); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS,$data1); curl_setopt($ch, CURLOPT_RETURNTRANSFER,TRUE); curl_setopt($ch, CURLOPT_FOLLOWLOCATION,0); $one=curl_exec($ch); echo $one; ?>