Просмотр файла icq/index.php
<?php include('WebIcqLite.class.php'); define('UIN', 111111111);//Здесь вводим UIN define('PASSWORD', 'password');//Пароль $icq = new WebIcqLite(); if($icq->connect(UIN, PASSWORD)){ if(!$icq->send_message('123456789'/*Кому сообщение*/, 'Hello from php!!!')){ echo $icq->error; }else{ echo 'Message sent'; } $icq->disconnect(); }else{ echo $icq->error; } ?>