Показать сообщение отдельно

  #8  
Старый 12.04.2009, 14:53
xMSAx
Новичок
Регистрация: 01.03.2009
Сообщений: 19
С нами: 9050968

Репутация: -6
По умолчанию

ой извени ( я не панимаю , ну вот если сможешь посотри..
Код:
<?php
include_once('nikashop/config.php');
include_once('nikashop/class_usershop.php');
include_once('nikashop/class_users.php');
include_once('nikashop/functions_usershop.php');

$obUsershop = new userShop;
$obUser = new storeUsers;

$userID = $vbulletin->userinfo['userid'];
$search = $vbulletin->db->escape_string($_GET['search']);
$gotShop = $obUsershop->gotShop($userID);

$arr = $obUsershop->getCheapest($search);
foreach ($arr as $key => $arr) {
	$user_arr = $obUser->getUser($arr['username']);
	$img = $arr['itemimage'];
	if(empty($img)) {
		$img = "Placeholder.gif";
	}
	$price = number_format($arr['price']);
	eval('$usershop_cheapList .= "'. fetch_template('usershop_cheapList') .'";');

}
/* eval templates */
eval('$navbar = "'. fetch_template('navbar') .'";');
eval('$content = "'. fetch_template('usershop_sort') .'";');
eval('print_output("' . fetch_template('usershop_shell') . '");');
?>
а как я залью .htaccess ? никак..

Последний раз редактировалось xMSAx; 12.04.2009 в 14:56..
 
Ответить с цитированием