'm a total newbie..i just want to know how can i display an http response 200
with this message "message successfully sent" ...here is my code
<?php
if ($status == "RETEMP02")
echo "Mobile number is empty.";
elseif ($status == "RETEMP03")
echo "Message is empty.";
elseif ($status == "RETEMP05")
echo "Message Id is empty.";
elseif ($status == "RETVAL03")
echo "Invalid mobile number.";
elseif ($status == "RETVAL04")
echo "Mobile number not recognized.";
elseif ($status == "RETVAL05")
echo "Message is containing illegal character.";
elseif ($status == "")
echo "Message sending failed";
else
echo "Message has been sent successfully.";
?>
-- 
View this message in context: 
http://www.nabble.com/http-response-200-tp18026193p18026193.html
Sent from the PHP - General mailing list archive at Nabble.com.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to