-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch_out.php
More file actions
37 lines (27 loc) · 966 Bytes
/
search_out.php
File metadata and controls
37 lines (27 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
require_once './php/essentials.php';
require_once './php/identify/user.php';
$headings = array($user['user_name']);
$navbox = TRUE;
$urls = array("user.php?user_id=$user_id");
require_once './php/identify/business.php';
array_push($headings, $business['business_name'], 'Search Expenses');
$urls[] = "business.php$unique_id";
require_once './php/header_one.php';
?>
<style type="text/css">
/* <![CDATA[ */
p {margin-bottom: 0.75em;}
p.radios input {margin-left: 1em;}
/* ]]> */
</style>
<?php
require_once './php/header_two.php';
?>
<form accept-charset="UTF-8" name="formname" method="get" action="find_out.php" onsubmit="disable('document.formname.search')">
<input type="hidden" name="user_id" value="<?php echo $_GET['user_id']; ?>" />
<input type="hidden" name="business_id" value="<?php echo $_GET['business_id']; ?>" />
<?php
$open_xhtml_tags[] = 'form';
require './php/forms/search_out.php';
include './php/footer.php';