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

手机WAP编程

开发平台:

WINDOWS

  1. <html>
  2. <head>
  3. <title>vCard SMS 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.  $text  = "BEGIN:VCARDrn";
  12.  $text .= "VERSION:2.1rn";
  13.  $text .= "N:".$lastname.";".$firstname."rn";
  14.  $text .= "TEL;PREF:+".$telephone."rn";
  15.  $text .= "END:VCARDrn";
  16.  echo "Sending the vCard SMS message <b>"$text"</b> to the phone <b>$to</b>...<br>n";
  17.  $URL = "/cgi-bin/sendsms?username=".USERNAME."&password=".PASSWORD."&from=".GLOBAL_SENDER."&to=$to&udh=%06%05%04%23%F4%00%00&text=".urlencode($text);
  18. // echo "URL: $URL<br>n";
  19.  http_send($URL,SENDSMS_PORT);
  20.  echo "<address><a href="$PHP_SELF">Back to Send vCard SMS</a></address>n";
  21. } else {
  22. ?>
  23. <h1>vCard SMS Sender</h1>
  24. <form name="sendvcard" method="post" action="<?php echo "$PHP_SELF" ?>">
  25. <p>
  26. Telephone number to send the SMS to:
  27. <br>
  28. <input type="text" size="30" name="to">
  29. </p>
  30. <p>
  31. vCard:
  32. <br>
  33. <table border=0>
  34. <tr><td>First name</td><td><input type=text" size="30" name="firstname"> <i>(ie. John)</i></td></tr>
  35. <tr><td>Last name</td><td><input type=text" size="30" name="lastname"> <i>(ie. Doe)</i></td></tr>
  36. <tr><td>Telephone</td><td><input type=text" size="30" name="telephone"> <i>(ie. 4512345678)</i></td></tr>
  37. </table>
  38. </p>
  39. <input type="submit" value="Send Message" name="submit">
  40. <input type="reset" value="Reset">
  41. <br>
  42. </form>
  43. <?php
  44. }
  45. ?>
  46. <p>
  47. </p>
  48. <hr>
  49. <table border="0" width="100%">
  50.   <tr>
  51.     <td width="50%"><address><a href="index.html">Back to admin</a></address></td>
  52.     <td width="50%" align="right"><address>Visit the Kannel homepage at <a href="http://www.kannel.org">www.kannel.org</a>.</address></td>
  53.   </tr>
  54. </table>
  55. </body>
  56. </html>