Warning: Cannot modify header information - headers already sent by (output started at /sms.php:9) in /sms.php on line 19
this happened when i use this code below.and i wanna redirect page to another page in my site
$username = '';
$password = '';
$client = new SoapClient('http://www.xxxx/xx');
$numbers = 'xxxx ';
$message =
'hi this is a test
!@#$%^&*
';
$senderName = 'xxxxxx';
try {
$response = $client->sendSMS($username, $password, $numbers, $message, $senderName);
var_dump($response);
header('Location: http://www.yoursite.com/new_page.html');
} catch(SoapFault $exception ) {
echo $exception->faultcode . ' : ' .$exception->faultstring . PHP_EOL;
}