-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·79 lines (77 loc) · 2.89 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
require_once('include/Class_DB.php');
require_once('include/login/auth.php');
require_once('include/debug.php');
$order = isset($_REQUEST['order']) ? $_REQUEST['order'] : "desc";
?>
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="include/style.css" media="screen"/>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="description" content="Viwe all your added components."/>
<meta name="keywords" content="electronics, components, database, project, inventory"/>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/apple.png" />
<title>Home - ecDB</title>
<?php include_once("include/analytics.php") ?>
</head>
<body>
<div id="wrapper">
<!-- Header -->
<?php include 'include/header.php'; ?>
<!-- END -->
<!-- Main menu -->
<?php include 'include/menu.php'; ?>
<!-- END -->
<!-- Main content -->
<div id="content">
<div class="subMenu">
<ul>
<?php
include('include/include_category_head.php');
$Head = new NameHead;
$Head->Head();
?>
</ul>
</div>
<?php
if($order == "desc"){
$order_write = "asc";
}
else{
$order_write = "desc";
}
?>
<table class="globalTables" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th></th>
<th><a href="?by=name&order=<?php echo $order_write;?>">Name</a></th>
<th><a href="?by=category&order=<?php echo $order_write;?>">Category </a></th>
<th><a href="?by=package&order=<?php echo $order_write;?>">Package </a></th>
<th><a href="?by=pins&order=<?php echo $order_write;?>">Pins </a></th>
<th>Image </th>
<th>Datasheet </th>
<th><a href="?by=smd&order=<?php echo $order_write;?>">SMD </a></th>
<th><a href="?by=price&order=<?php echo $order_write;?>">Price </a></th>
<th><a href="?by=quantity&order=<?php echo $order_write;?>">Quantity </a></th>
<th>Comment</th>
</tr>
</thead>
<tbody>
<?php
include('include/include.php');
$Index = new ShowComponents();
$Index->Index();
?>
</tbody>
</table>
</div>
<!-- END -->
<!-- Text outside the main content -->
<?php include 'include/footer.php'; ?>
<!-- END -->
</div>
</body>
</html>