חח מה אתה מנסה לגנוב אייסיקיו לאנשים ? ^_^
אני חושב שזה זה ,
זה הקובץ CLASS -
http://wip.asminog.com/projects/icq/...ite.class.phps
זה הקוד לשליחת\קבלת הודעה:
ציטוט:
<?php
require "WebIcqLite.class.php";
$username='1234567890'; // put here the login details of your account
$password='password';
$newsletter_subscribers=array(
'11111111', '22222222', '333333333' // list with recipients
);
$newsletter_text='Check out the new ICQ article at http://ustrem.org/'; // message text
$icq = new WebIcqLite();
if(!$icq->connect($username, $password))
{
die($icq->error);
}
foreach ($newsletter_subscribers as $subscriber)
{
$result=$icq->send_message($subscriber, $newsletter_text);
if (!$result)
{
echo "\nCannot send to $subscriber, reason: ".$icq->error;
}
else
{
echo "\nSent to $subscriber";
}
sleep(30);
}
$icq->disconnect();
?>
|