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.

26 lines
544 B

<?php
// new logic
$page_edit_contact = PAGE_EDIT_CONTACT;
$page_shop_log = PAGE_SHOP_LOG;
if($_GET['visit_id']>0){
$visit_id = $_GET['visit_id'];
} else {
$visit_id =-1;}
if($_GET['contact_id']>0){
$contact_id = $_GET['contact_id'];
} else {
$contact_id = -1;
}
include("include_header.html")
?>
<div id="contact_id" style="display:none;"><?php echo $contact_id; ?></div>
<center><div id="name" style="align-content:center; font-size:2em;"></div></center>
<div id="individual_history"></div>
<?php include("include_footer.html"); ?>