Yellow Bike Project Hours and Transaction Database for Community Bike Shops
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?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 ));
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
|