-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexperiment.php
More file actions
88 lines (83 loc) · 3.94 KB
/
experiment.php
File metadata and controls
88 lines (83 loc) · 3.94 KB
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
<?php
include_once "common/base.php";
$pageTitle = "Experiment";
require 'common/header.php';
define('PATH', dirname(__FILE__));
?>
<div class="container max">
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-3">
<p class="lead">Categories</p>
<div class="list-group">
<a href="allprojects.php" class="list-group-item">All Experiments</a>
<a href="#" class="list-group-item">Recent Experiments</a>
<a href="#" class="list-group-item">Past Experiments</a>
<a href="#" class="list-group-item">Lab Safety</a>
</div>
</div>
<div class="col-md-9">
<div id="content">
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#qst" data-toggle="tab">Question</a></li>
<li><a href="#sol" data-toggle="tab">Solution</a></li>
</ul>
<div id="my-tab-content" class="tab-content">
<div class="tab-pane active" id="qst">
<h1>Question</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure nisi optio quae saepe vero!</p>
</div>
<div class="tab-pane" id="sol">
<h1>Solution</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure nisi optio quae saepe vero!</p>
<table class="table table-hover table-bordered table-striped">
<caption>Products</caption>
<thead>
<tr>
<th>#</th>
<th>Voltage (V)</th>
<th>Current (A)</th>
<th>Distance (M)</th>
<th>Time (H)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>1.5</td>
<td>0.3</td>
<td>0.4</td>
<td>09.20</td>
</tr>
<tr>
<td>2.</td>
<td>1.5</td>
<td>0.3</td>
<td>0.4</td>
<td>09.20</td>
</tr>
<tr>
<td>3.</td>
<td>1.5</td>
<td>0.3</td>
<td>0.4</td>
<td>09.20</td>
</tr>
</tbody>
</table>
<div class="chart">
<figure style="width: 400px; height: 300px;" id="myChart"></figure>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
require 'common/footer.php';
?>