1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-22 17:03:22 -05:00
Yellow-Bike-Database-Mirror/individual_history_log.php

26 lines
544 B
PHP
Raw Normal View History

<?php
2017-10-29 23:49:12 +00:00
// 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;
}
2017-10-29 23:49:12 +00:00
include("include_header.html")
?>
2017-10-29 23:49:12 +00:00
<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>
2017-10-29 23:49:12 +00:00
<?php include("include_footer.html"); ?>