i have wrttien PHP function to send sms, but it only send 67 characters.
please help me.
function sendsms($message,$to)
{
$url =
'/cgi-bin/sendsms?username=kannel&password=xxxxx&&charset=UCS-2&coding=2'
. "&to={$to}"
. '&text=' . urlencode(iconv('utf-8', 'ucs-2', $message));
$results = file('http://localhost:13013'.$url);
}
--
View this message in context:
http://old.nabble.com/URL-encoding-error-in-sms-sending-by-Php-Script-tp31349279p31349279.html
Sent from the Kannel - User mailing list archive at Nabble.com.