-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolarimeter.php
71 lines (61 loc) · 2.05 KB
/
polarimeter.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
<?php include("./templates/header.php"); ?>
<div class="container">
<div class="row">
<div class="col s12">
<table class="striped z-depth-3 purple lighten-4">
<caption class="card-panel purple accent-1 z-depth-3"><h5>Polarimeter</h5></caption>
<thead class="z-depth-1">
<tr>
<th rowspan="3">S.No.</th>
<th colspan="7">Analyser Readings<br> (Clockwise)</th>
<th rowspan="3">X= b°-a° </th>
<th colspan="7">Analyser Readings <br> (AntiClockwise)</th>
<th rowspan="3">Y= c°-d° </th>
<th rowspan="3">Mean= (X+Y)/2 </th>
</tr>
<tr>
<th colspan="3">Reading With Pure Water(a°)</th>
<th rowspan="2">Concentration</th>
<th colspan="3">Reading With Sugar Solution (b°)</th>
<th colspan="3">Reading With Pure Water(c°)</th>
<th rowspan="2" >Concentration</th>
<th colspan="3">Reading With Sugar Solution(d°)</th>
</tr>
<tr>
<th>M.S</th>
<th>V.S</th>
<th>T.R</th>
<th>M.S</th>
<th>V.S</th>
<th>T.R</th>
<th>M.S</th>
<th>V.S</th>
<th>T.R</th>
<th>M.S</th>
<th>V.S</th>
<th>T.R</th>
</tr>
</thead>
<form id="polarimeter_form">
<tbody>
<?php
for($x=0;$x<3;$x++)
{
include("./templates/polarimeter.php");
}
?>
<input type="hidden" name="exp" value="polarimeter">
<tr>
<td colspan="18"><button type="submit" class="waves-effect waves-light btn" name="submit_polarimeter" >Calculate</button></td>
</tr>
</tbody>
</form>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="materialize/js/jquery.js"></script>
<script type="text/javascript" src="materialize/js/materialize.min.js"></script>
<script type="text/javascript" src="materialize/js/polarimeter.js"></script>
</body>
</html>