View Single Post
ישן 26-08-09, 12:13   # 4
InetKey.Net
חבר על
 
InetKey.Net's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: ערד
גיל: 34
הודעות: 963
שלח הודעה באמצעות ICO אל InetKey.Net שלח הודעה באמצעות MSN אל InetKey.Net

InetKey.Net לא מחובר  

חח מה אתה מנסה לגנוב אייסיקיו לאנשים ? ^_^

אני חושב שזה זה ,
זה הקובץ 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();

?>
__________________
דניס טוקלנקוב, בעל העסק InetKey.Net.
לתמיכה והזמנות חייגו: 0547177783
*עסק חוקי אשר רשום במע"מ ומספק קבלות.

איינטקי - InetKey - אירוח אתרים - שרתים יעודיים - שמות מתחם - שרתי VPS
  Reply With Quote