area.php
8.7 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
// Definitions
if (file_exists('dbconnect.php')) {
require('dbconnect.php');
if (mysqli_connect_error()) {
die('Connect Error (' . mysqli_connect_errno() . ')' . mysqli_connect_error());
}
}
//Add function file
if (file_exists('../includes/functions.php')) {
require_once('../includes/functions.php');
} else {
echo "Unsupported File";
}
$from_value = '';
$from_unit = '';
$to_unit = '';
$to_value = '';
if ($_POST['submit']) {
$from_value = $_POST['from_value'];
$from_unit = $_POST['from_unit'];
$to_unit = $_POST['to_unit'];
$to_value = convert_area($from_value, $from_unit, $to_unit);
//$mysqli = new mysqli_connect(DB_HOST,DB_USER,DB_PASSWORD,DB_NAME);
// mysql_query("INSERT INTO area_entry (from_unit,to_unit,from_value,to_value) VALUES ()");
$sql = "INSERT INTO area_entry(from_unit,to_unit,from_value,to_value) VALUES ('$from_unit','$to_unit','$from_value','$to_value');";
if (!mysqli_query($link, $sql)) {
die('An error occurred when submitting your review.');
}
/*
if($link->query($sql)){
echo "Record Added";
}
else{
die(mysql_error($sql));
}
*/
mysqli_close($link);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../css/simp-Area.css" />
<title>Area</title>
</head>
<body>
<!--This is the simpler version,
supposed to have-
>a top title
>a side bar menu
>calculator with input,output,reset button-->
<nav class="navbar">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#000" stroke-width="5" />
<path d="M0,14 30,14" stroke="#000" stroke-width="5" />
<path d="M0,23 30,23" stroke="#000" stroke-width="5" />
</svg>
</a>
</span>
</nav>
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="length.php">Length</a>
<a href="temperature.php">Temperature</a>
<a href="area.php">Area</a>
<a href="volume.php">Volume</a>
<a href="weight.php">Weight</a>
<a href="speed.php">Speed</a>
<a href="../login/login.php">Log in</a>
</div>
<script src="../js/frontSide.js"></script>
<div id="title">
<h1>Area</h1>
</div>
<!-- top---->
<div class="calculator">
<!--whole calculator outline-->
<div class="calcb">
<!--Calculator box -->
<div id="sinput" class="input">
<form id="io" method="POST">
<!-- calculator input and output-->
<!--Add function to recieve number,
Be able to input number from either box.-->
<input id="Input" class="Input-text" placeholder="Enter amount" name="from_value" value="<?php echo $from_value; ?>" /> <label for="Input" class="Input-label">Your entry</label>
<select name="from_unit">
<option value="square_inches" <?php if ($from_unit == 'square_inches') {
echo " selected";
} ?>>square inches</option>
<option value="square_feet" <?php if ($from_unit == 'square_feet') {
echo " selected";
} ?>>square feet</option>
<option value="square_yards" <?php if ($from_unit == 'square_yards') {
echo " selected";
} ?>>square yards</option>
<option value="square_miles" <?php if ($from_unit == 'square_miles') {
echo " selected";
} ?>>square miles</option>
<option value="square_millimeters" <?php if ($from_unit == 'square_millimeters') {
echo " selected";
} ?>>square millimeters</option>
<option value="square_centimeters" <?php if ($from_unit == 'square_centimeters') {
echo " selected";
} ?>>square centimeters</option>
<option value="square_meters" <?php if ($from_unit == 'square_meters') {
echo " selected";
} ?>>square meters</option>
<option value="square_kilometers" <?php if ($from_unit == 'square_kilometers') {
echo " selected";
} ?>>square kilometers</option>
<option value="acres" <?php if ($from_unit == 'acres') {
echo " selected";
} ?>>acres</option>
<option value="hectares" <?php if ($from_unit == 'hectares') {
echo " selected";
} ?>>hectares</option>
</select>
<br>
<input readonly id="Input" class="Input-text" placeholder="Wait for it" name="to_value" value=" <?php echo $to_value; ?>" />
<label for="Input" class="input-label">Converted Result</label>
<select name="to_unit">
<option value="square_inches" <?php if ($to_unit == 'square_inches') {
echo " selected";
} ?>>square inches</option>
<option value="square_feet" <?php if ($to_unit == 'square_feet') {
echo " selected";
} ?>>square feet</option>
<option value="square_yards" <?php if ($to_unit == 'square_yards') {
echo " selected";
} ?>>square yards</option>
<option value="square_miles" <?php if ($to_unit == 'square_miles') {
echo " selected";
} ?>>square miles</option>
<option value="square_millimeters" <?php if ($to_unit == 'square_millimeters') {
echo " selected";
} ?>>square millimeters</option>
<option value="square_centimeters" <?php if ($to_unit == 'square_centimeters') {
echo " selected";
} ?>>square centimeters</option>
<option value="square_meters" <?php if ($to_unit == 'square_meters') {
echo " selected";
} ?>>square meters</option>
<option value="square_kilometers" <?php if ($to_unit == 'square_kilometers') {
echo " selected";
} ?>>square kilometers</option>
<option value="acres" <?php if ($to_unit == 'acres') {
echo " selected";
} ?>>acres</option>
<option value="hectares" <?php if ($to_unit == 'hectares') {
echo " selected";
} ?>>hectares</option>
</select>
<div id="reset" class="button">
<input type="submit" name="submit" value="Submit" />
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>