On Fri, Jul 31, 2009 at 4:33 PM, denis bahati<[email protected]> wrote: > example of messages: > > $msg="Hello"; > > this will work fine. > > $msg="hello there what are you doing"; > Any idea?
The message text has to be url encoded. Try with: $msg="hello%20there%20what%20are%20you%20doing"; %20 is the url encoded value for space HTH, Jovan
