-
Notifications
You must be signed in to change notification settings - Fork 10
/
nav.php
66 lines (64 loc) · 1.12 KB
/
nav.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
function dash(){
include 'dash.php';
}
function pro(){
include 'pro.php';
}
function pro_list(){
include 'pro_list.php';
}
function cat(){
include 'cat.php';
}
function ty(){
include 'ty.php';
}
function st(){
include 'stock_details.php';;
}
function firm(){
include 'firm.php';
}
function bill(){
include 'bill.php';
}
function showbill(){
include 'sb.php';
}
function seller_bill(){
include 'sbill.php';
}
function show_seller_bill(){
include 'show_seller_bill.php';
}
function custom_bill(){
include 'custom_billing.php';
}
$link = $_POST['pro'];
if ($link == 'pro') {
pro();
}elseif ($link == 'pro_list') {
pro_list();
}elseif ($link == 'cat') {
cat();
}elseif ($link == 'ty') {
ty();
}elseif ($link == 'dash') {
dash();
}elseif ($link == 'st') {
st();
}elseif ($link == 'bill') {
bill();
}elseif ($link == 'firm') {
firm();
}elseif ($link == 'sb') {
showbill();
}elseif ($link == 'sbill') {
seller_bill();
}elseif ($link == 'show_seller_bill') {
show_seller_bill();
}elseif ($link == 'c_bill') {
custom_bill();
}
?>