1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-21 08:34:27 -05:00
2014-12-19 18:51:31 +00:00

18 lines
375 B
PHP

<?php
require_once('Connections/YBDB.php');
require_once('Connections/database_functions.php');
$shop_id = current_shop_by_ip();
//determine which page to load
if (isset($shop_id)) {
$gotopage = PAGE_SHOP_LOG ."?shop_id={$shop_id}";
header(sprintf("Location: %s",$gotopage ));
} else {
$gotopage = PAGE_START_SHOP;
header(sprintf("Location: %s",$gotopage ));
}
?>