-
Notifications
You must be signed in to change notification settings - Fork 40
/
proj_list.php
94 lines (86 loc) · 2.81 KB
/
proj_list.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
require_once('include/login/auth.php');
require_once('include/debug.php');
?>
<!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="Add your projects here. You will then be able to add components to them and creat BOM-list."/>
<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>Your Projects - 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">
<?php
include('include/include_proj_add.php');
$AddProj = new ProjAdd;
$AddProj->AddProj();
$proj_query = mysql_query("SELECT * FROM projects WHERE project_owner= $owner");
if(mysql_num_rows($proj_query) == 0){
echo '<div class="message orange">To create a BOM-list (Bill Of Material) you have to first create a project. You will then be able to add your components to your project and automaticly create a BOM-list.</div>';
}
?>
<form class="globalForms" method="post" action="">
<div class="textInput">
<label class="keyWord">Project name</label>
<div class="input"><input name="name" id="name" type="text" class="medium" /></div>
</div>
<div class="buttons">
<div class="input">
<button class="button green" name="submit" type="submit"><span class="icon medium save"></span> Add project</button>
</div>
</div>
</form>
<hr>
<table class="globalTables" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th></th>
<th><a href="?by=name&order=<?php
if(isset($_GET['order'])){
$order = $_GET['order'];
if ($order == 'asc'){
echo 'desc';
}
else {
echo 'asc';
}
}
else {
echo 'desc';
}
?>">Name</a>
</th>
<th>Number of components</th>
<th>Total cost</th>
</tr>
</thead>
<tbody>
<?php
include('include/include_proj_list_projets.php');
$ProjList = new Proj;
$ProjList->ProjList();
?>
</tbody>
</table>
</div>
<!-- END -->
<!-- Text outside the main content -->
<?php include 'include/footer.php'; ?>
<!-- END -->
</div>
</body>
</html>