-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdummypost.php
36 lines (30 loc) · 1 KB
/
dummypost.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
<html>
<body>
Form for getPerson.php
<form method="post" action="getperson.php">
<input placeholder="lat" name="lat" type="text"/>
<input placeholder="long" name="long" type="text"/>
<input type="submit">
</form>
Form for addperson.php
<form method="post" action="http://www.oth1.com/codeniti/addperson.php">
<input placeholder="pic" name="pic" type="text"/>
<input placeholder="lat" name="lat" type="text"/>
<input placeholder="long" name="long" type="text"/>
<input placeholder="rating" name="rating" type="text"/>
<input type="submit">
</form>
Form for authenticate.php
<form method="post" action="authenticate.php">
<input placeholder="email" name="email" type="email"/>
<input placeholder="password" name="password" type="text"/>
<input type="submit">
</form>
Form for update.php
<form method="post" action="update.php">
<input placeholder="pic" name="pic" type="text"/>
<input placeholder="update" name="update" type="text"/>
<input type="submit" name="submit">
</form>
</body>
</html>