if(!defined("IN_SITE")){
print "Pls stop haxing";
exit;
}
/*
*/
$me = $_GET["page"];
$linktome = buildlinkback($me);
$ShopID = addslashes($_GET["shopID"]);
if(!$loggedin){
print "You must login before browsing the shops!";
} else {
if(!is_numeric($ShopID) || !isset($ShopID)){
print "Sorry! We cannot find that shop!";
} else {
$GetShopQuery = mysql_query("SELECT * from `shops` where shop_id='$shopID'") or print(mysql_error() . " " . __FILE__ . " #" . __LINE__);
if(mysql_num_rows($GetShopQuery) < 1){
print "Sorry! We cannot find that shop!";
} else {
$ShopInfo = mysql_fetch_array($GetShopQuery);
$GetShopStock = mysql_query("SELECT * from `shop_stock` where shop_id='$shopID'") or print(mysql_error() . " " . __FILE__ . " #" . __LINE__);
?>
=stripslashes($ShopInfo["greeting"]);?>Welcome to =stripslashes($ShopInfo["name"]);?>