-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquote.php
43 lines (32 loc) · 803 Bytes
/
quote.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
<?
// require common code
require_once("includes/common.php");
?>
<!DOCTYPE html>
<html>
<head>
<link href="css/styles.css" rel="stylesheet" type="text/css">
<title>C$50 Finance: Quote</title>
</head>
<body>
<div id="top">
<a href="index.php"><img alt="C$50 Finance" src="images/logo.gif"></a>
</div>
<div id="middle">
<form action="quote2.php" method="post">
<table>
<tr>
<td>Symbol:</td>
<td><input name="symbol" type="text"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Get Quote"></td>
</tr>
</table>
</form>
</div>
<div id="bottom">
or go back to the <a href="index.php">main</a> page
</div>
</body>
</html>