Просмотр файла pyramid/icq.php

Размер файла: 1.59Kb
<?
require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
require_once"../template/maincore.php";
require_once"../template/antidos.php";
require_once"../template/cookies.php";
require_once"../template/gzip.php";
require_once"../template/header.php";
require_once"../template/referer.php";
include_once"../themes/$config_themes/index.php";

$text = @file("data/setting.dat");
if ($text!=""){
$icqdt = explode("|",$text[0]);}

$UIN = $icqdt[5];			// icq-номер, с него будут отправляться сообщения
$PASSWORD = $icqdt[6];	// пароль к нему


	include('WebIcqLite.class.php');
 $text=Encode($_POST['text'],'w');
    $icq = new WebIcqLite();
    if($icq->connect($UIN, $PASSWORD)){
        if(!$icq->send_message($_POST['uin'], $text)){
            echo $icq->error;
        }else{
            echo'
<b>Отправка ICQ-сообщений</b><br/>
Сообщение отправлено.<br>';
        }
        $icq->disconnect();
    }else{
        echo $icq->error;
    }


function Encode($str,$type=u)
{
	$conv=array();
	for($x=192;$x<=239;$x++)
  $conv['u'][chr($x)]=chr(208).chr($x-48);
	for($x=240;$x<=255;$x++)
  $conv['u'][chr($x)]=chr(209).chr($x-112);
 $conv['u'][chr(168)]=chr(208).chr(129);
 $conv['u'][chr(184)]=chr(209).chr(209);
 $conv['w']=array_flip($conv['u']);
	if($type=='w' || $type=='u')
		return strtr($str,$conv[$type]);
	else
		return $str;
}

include_once"../themes/$config_themes/foot.php";
?>