home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 4 / hacker04 / 04_HACK04.ISO / src / PHP / icqpager.php3.txt < prev    next >
Encoding:
Text File  |  2002-05-06  |  712 b   |  30 lines

  1. ICQ Pager 
  2.  
  3. This function sends an ICQ page to a specified UIN. It uses Mirabilis' ICQ pager system to send an ICQ message to a specified UIN. 
  4.  
  5.  
  6. <?php
  7. /*
  8. ICQ Pager
  9. by Eric Hanson - eric@cornado.com
  10. http://www.chatprogram.com/
  11. July 24, 1999
  12.  
  13. this is a very trivial script, but i didn't know how to do it initially so 
  14. maybe it will be helpful to others.  it uses mirabilis' icq pager system to
  15. send an ICQ message to a specified UIN.  thanks to ross "the boss" at
  16. activestudios.net.  i use this script to alert me if someone enters our
  17. product support chat.
  18. */
  19.  
  20. function ICQpage ($uin, $subject, $message) {
  21.   mail (
  22.     $uin.'@pager.icq.com',
  23.     $subject,
  24.     $message
  25.   );
  26. }
  27.  
  28. ?>
  29.  
  30.