Hi, I hope this is not a to simple question for you guys, but I am still a newbie, so you will have to bare with me.
I want to send som variables from my server to a remote asp script that sends sms. The point is to notify myself about new users and posts on my website. I have the html form that is fully functional; it looks in its simplest form like this:
<head>
<title></title>
</head>
<body bgcolor="#ffffff">
<FORM ACTION="http://sms.idea.pl/sendsms.asp" METHOD="POST" ENCTYPE="application/x-www-form-urlencoded" NAME="komunikat">
<table>
<tr>
<td>From:</td>
<td>
<input name="SENDER" value="" maxlength="25" size=25>
</td>
</tr>
<tr>
<td>to:</td>
<td>
<input name="RECIPIENT" value="" maxlength="9" size=16>
</td>
</tr>
<tr>
<td>message</td>
<td >
<textarea name="SHORT_MESSAGE" rows=4 cols=40 length=10 wrap="physical"></textarea>
</td>
</tr>
<tr>
<td>
<input type = "SUBMIT" value="send" onClick="return checkFields(document.forms[0]);" name="SUBMIT">
</td>
</tr>
</table>
</FORM>
</body>
I just want to send the variables SENDER, RECIPIENT and SHORT_MESSAGE to the http://sms.idea.pl/sendsms.asp script with
php.
I will be happy for any suggestions.
Thank you for your help!
Jacob.