-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddbest_time1.php
65 lines (59 loc) · 2.11 KB
/
addbest_time1.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
<?PHP
include "dbconnect.php";
$sql = "SELECT * from swimmers";
$result = $conn->query($sql);
$swimmers = $result->fetch_all(MYSQLI_ASSOC);
?>
<form action="addbest_time2.php">
<label for="swimmer_id">Swimmer:</label></br>
<select id="swimmer_id" name="swimmer_id" >
<?php
for($i=0; $i< count($swimmers); $i++)
{
echo '<option value = "' . $swimmers[$i]["swimmer_id"] . '">';
echo $swimmers[$i]["fname"] . "</option>";
}
?>
</select> </br>
<label for="distance">Distance:</label></br>
<select id="distance" name="distance" >
<?php
echo '<option value = "50">';
echo "50</option>";
echo '<option value = "100">';
echo "100</option>";
echo '<option value = "200">';
echo "200</option>";
echo '<option value = "400">';
echo "400</option>";
echo '<option value = "500">';
echo "500</option>";
echo '<option value = "1000">';
echo "1000</option>";
echo '<option value = "1650">';
echo "1650</option>";
?>
</select> </br>
<label for="stroke">Stroke:</label></br>
<select id="stroke" name="stroke" >
<?php
echo '<option value = "FL">';
echo "Butterfly</option>";
echo '<option value = "BK">';
echo "Backstroke</option>";
echo '<option value = "BR">';
echo "Breaststroke</option>";
echo '<option value = "FR">';
echo "Freestyle</option>";
echo '<option value = "IM">';
echo "IM</option>";
?>
</select> </br>
<label for="time">Time (HH:MM:SS):</label></br>
<input type="text" id="time" name="time" value="00:"></br>
<label for="hundredths">Hundredths:</label></br>
<input type="text" id="hundredths" name="hundredths"></br>
<label for="date_achieved">Date Achieved (YYYY-MM-DD):</label></br>
<input type="text" id="date_achieved" name="date_achieved"></br>
<input type="submit" value="Submit">
</form>