Hello All,

I am building a free sms sending website. And API codes have been provided to me by the sms providing company.

Now the problem is that the form I built to send the Destination Mobile Number and Message also needs to send the username and password of the account to the server to which account the company has alloted sms credits.

The following is the sample code I used in the html file to POST the data to the server:-
Code:
<form action="hxxp://api.mVaayoo.com/mvaayooapi/MessageCompose" method="post">

Number:<inputtype="text" name="receipientno" />
Message:<inputtype="text" name="msgtxt" />
<inputtype="hidden" name="user" value="USERNAMEASSWORD" />
<inputtype="hidden" name="senderID" value="mVaayoo" />
<inputtype="hidden" name="state" value="0" />
<inputtype="submit" />
</form>
Now the problem is when some one will click on view source option, they'll be able to see the username and password.
So is there any method through which I can silently send this crucial details secretly without bringing it to the notice of normal user.
Is there any other way to send this perticular data?

A quick help would really be appreciated...

Thank you all in advance
ragavbpl1 Reviewed by ragavbpl1 on . PHP Help Needed!! Hello All, I am building a free sms sending website. And API codes have been provided to me by the sms providing company. Now the problem is that the form I built to send the Destination Mobile Number and Message also needs to send the username and password of the account to the server to which account the company has alloted sms credits. The following is the sample code I used in the html file to POST the data to the server:- Code: <form Rating: 5