I want to send message from web to phone using Gammu SMS gateway. I try it before on command prompt using this command:
gammu --sendsms text 08512345677 -text "Hello World!"
and it works!
Then I try it on a PHP file using:
exec('c:\gammu\bin\gammu --sendsms text 08512345677 -text "Hello World!" ');
but it doesn't work. Anyone can solve my problem?