-
Notifications
You must be signed in to change notification settings - Fork 0
/
pformmongo.php
70 lines (53 loc) · 2.04 KB
/
pformmongo.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
67
68
69
70
<?php
//payment
include_once 'dbcon123.php'
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="RegisterCSS.css">
<link rel="stylesheet" type="text/css" href="MainPageCSS.css">
</head>
<body>
<div class="header">
<h2 style="color:#808080">Lanka Institute Of Technology</h2>
</div>
<ul >
<li><a class="active" href="MainPage.php">Home</a></li>
<li><a href="StudentRegisterPHP.php">Student Registration</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Employee Registration</a>
<div class="dropdown-content">
<a href="AcedamicRegisterPHP.php">Acedamic Registration</a>
<a href="NAcedamicRegisterPHP.php">NON-Acedamic Registration</a>
</div>
</li>
<li><a href="studentdetails.php">Student Details</a></li>
<li><a href="empdetails.php" class="dropbtn">Employee Details</a></li>
<li><a href="updatepage.php">Update Deatils</a></li>
<li><a href="removedata.php">Remove Deatils</a></li>
<li><a href="mongo.php">NoSQL Database(Mongo)</a></li>
<li><a href="modform.php">Modules</a></li>
<li><a href="paymentform.php">Paments</a></li>
<li><a href="labform.php">Labs</a></li>
<li><a href="tuteform.php">Tutes</a></li>
<li><a href="lecform.php">Lectures</a></li>
<li style="float:right"><a href="AdminLoginPHP.php">Admin logout</a></li>
</ul>
<form action="pfindmongo.php" method="post">
<div class="container">
<h1>Enter New Models</h1>
<p>Please fill in this form to inser a new Module.</p>
<hr>
<label for="reciptno"><b>Recipt Number</b></label>
<input type="text" placeholder="Enter Recipt no" name="rno" required>
<label for="cost"><b>Cost</b></label>
<input type="text" placeholder="Enter Cost" name="cost" required>
<label for="ssn"><b>Student SSn</b></label>
<input type="text" placeholder="Enter Student ssn" name="ssn" required>
<hr>
<button type="submit" name="submit" class="registerbtn">Register</button>
</div>
</form>
</body>
</html>