sendsms.php
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. <html>
  2. <head>
  3. <title>SMS Message Sender</title>
  4. </head>
  5. <body bgcolor="#FFFFFF" text="#000000">
  6. <?php
  7. include("config.inc");
  8. include("functions.inc");
  9. if ($submit)
  10. {
  11.  echo "Sending the SMS Text message <b>"$text"</b> to the phone <b>$to</b>...<br>n";
  12.  $URL = "/cgi-bin/sendsms?username=".USERNAME."&password=".PASSWORD."&from=".GLOBAL_SENDER."&to=$to&text=".urlencode($text);
  13.  http_send($URL,SENDSMS_PORT);
  14.  echo "<address><a href="$PHP_SELF">Back to Send SMS</a></address>n";
  15. } else {
  16. ?>
  17. <h1>SMS Message Sender</h1>
  18. <form name="sendsms" method="post" action="<?php echo "$PHP_SELF" ?>">
  19. <p>
  20. Telephone number:
  21. <br>
  22. <input type="text" size="30" name="to">
  23. </p>
  24. <p>
  25. Message:
  26. <br>
  27. <textarea cols="20" rows="5" name="text"></textarea>
  28. </p>
  29. <input type="submit" value="Send Message" name="submit">
  30. <input type="reset" value="Reset">
  31. <br>
  32. </form>
  33. <?php
  34. }
  35. ?>
  36. <p>
  37. </p>
  38. <hr>
  39. <table border="0" width="100%">
  40.   <tr>
  41.     <td width="50%"><address><a href="index.html">Back to admin</a></address></td>
  42.     <td width="50%" align="right"><address>Visit the Kannel homepage at <a href="http://www.kannel.org">www.kannel.org</a>.</address></td>
  43.   </tr>
  44. </table>
  45. </body>
  46. </html>