-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd_stocks.php
66 lines (51 loc) · 1.32 KB
/
add_stocks.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
<?php
//including common files
require_once './include/common.php';
require_once './template/header.php';
?>
<br/>
<center>
<form action="add_stocks_process.php" method="post">
<table class="gridtable">
<tr>
<td>Stock Name</td>
<td><input type="text" name="stock_name" id="stock_name" value=""></td>
</tr>
<tr>
<td>Money Control</td>
<td><textarea name="murl" rows="5" cols="50"></textarea></td>
</tr>
<tr>
<td>ChartInk</td>
<td><textarea name="curl" rows="5" cols="50"></textarea></td>
</tr>
<tr>
<td>Stock Type</td>
<td>
<select name="type" id="type" onchange="show_watch_list();">
<option value="penny" > -- Penny Lists -- </option>
<option value="nifty" selected="selected" > -- Nifty Lists -- </option>
</select>
</td>
</tr>
</td>
</tr>
<tr>
<td>Notes</td>
<td><textarea name="notes" rows="5" cols="50"></textarea></td>
</tr>
<tr>
<td>Company Info</td>
<td><input type="text" size="40" name="company_info" id="company_info" value=""></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="Add" value="Save"></td>
</tr>
</table>
</form>
</center>
<?php
if(!empty($_GET['msg'])) {
echo $_GET['msg'];
}
?>