Guest
17 years ago
Can someone please help me out. What I'm trying to do is edit the SendSMS script. So there is a option to enter both username and password from the web browser.

Something like

Username:
Password:
Recipient(s):
Sender's Id:
Message:
Max Msg Parts:
Guest
17 years ago
Anyone help me out with this please
Guest
17 years ago
still need help ?
Guest
16 years ago
Change the script of the send sms page as below;


OLD: $objIntelliSMS->Username = 'username';
UPDATE WITH: $objIntelliSMS->Username = $_POST['username'];

OLD: $objIntelliSMS->Password = 'password';
UPDATE WITH: $objIntelliSMS->Password = $_POST['password'];


And input two input fields in the form labelled 'username' and password' and the user can input the username and password and these input details will also be forwarded to intellisoftware with the other input data.


Users browsing this topic