-
Notifications
You must be signed in to change notification settings - Fork 2
/
between.php
39 lines (28 loc) · 824 Bytes
/
between.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
<html>
<head><link rel="stylesheet" type="text/css" href="button.css">
<meta name="viewport" content="width=device-width, initial-scale=1" /></head>
<body>
<form action="calen.php" method="POST">
<br><br>
<?php
$subname=$_POST['subb'];
echo "<input type=\"hidden\" name=\"subb\" value=\"".$subname."\">";
echo "<input type=\"submit\" value=\"Take Attendance\">";
?>
</form>
<form action="studsheet.php" method="GET">
<?php
$subname=$_POST['subb'];
echo "<input type=\"hidden\" name=\"subb\" value=\"".$subname."\">";
echo "<input type=\"submit\" value=\"Export Attendance\">";
?>
</form>
<form action="deten.php" method="POST">
<?php
$subname=$_POST['subb'];
echo "<input type=\"hidden\" name=\"subb\" value=\"".$subname."\">";
echo "<input type=\"submit\" value=\"View Percentage\">";
?>
</form>
</body>
</html>