hey guys im trying to post forms without show the page after post it
my code
my code
PHP Code:
function sendsms($number, $message)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://test.com");
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"number={$number}&msg={$message}");
$result = curl_exec($ch);
curl_close($ch);
}
Comment