Hello,
Parse error: syntax error, unexpected T_WHILE in /www/gamerscafe.nl/testing/www/portal/block/multiplay.php on line 35
got that error with the next code:
<?php
/*
*
* @name blank_block.php
* @package phpBB3 Portal XL 5.0
* @version $Id: blank_block.php,v 1.2 2009/05/15 22:32:06 damysterious Exp $
*
* @copyright (c) 2007, 2009 Portal XL Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
*/
/*
* Start session management
*/
/*
* Begin block script here
*/
if ($user->data['is_registered']){
$dat = $user->data['user_id'];
$link = '<iframe src ="http://www.come2play.com/channel_auth.asp?channel_id=33202&uid=';;
$link .= $dat;
$link .= '&nick_name=';
$result = mysql_query('SELECT * FROM '. USERS_TABLE .' WHERE user_id="$dat" ')
while($row = mysql_fetch_array( $result ))
{
$link .= $row ['username'];
}
$link .='&auth_sig=';
$channel = '23b7f054e101a14674b51c9f0d7dfee2';
$combine = $dat|$channel;
$combimix= md5($combine);
$link .= $combimix ;
$link .='" width="850" height="520" frameborder="0" scrolling="no" allowtransparency="true" >';
$link .='<p>Your browser does not support iframes.</p>';
$link .='</iframe>';
}else{
link. = '<center> You need to be logd in to see this iframe';
}
// Set the filename of the template you want to use for this file.
$template->set_filenames(array(
'body' => 'portal/block/multiplay.html',
));
?>
somebody has an idea?
2.340 views