-
Notifications
You must be signed in to change notification settings - Fork 0
/
insertvideo.php
35 lines (34 loc) · 948 Bytes
/
insertvideo.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
<html>
<body>
<?php //echo $_GET['myperson'];?>
<h1> Add Video </h1>
<a href="insert01.php?myperson=<?php echo $_GET['myperson']; ?>" >
Insert misc item instead
</a>
<a href="insertbook.php?myperson=<?php echo $_GET['myperson']; ?>" >
Insert book instead
</a>
<a href="insertcd.php?myperson=<?php echo $_GET['myperson']; ?>" >
Insert cd instead
</a>
<form method="POST" action="insertNewItemOwnedby.php">
<p>Value:
<input type="text" name="value" value=0.00 >
Owner:
<input type="text" name="owner" value='<?php echo $_GET['myperson'];?>' >
<input type="submit" value="submit" name="B1"></p>
Description
<textarea rows="5" cols="75" name="description" >
</textarea>
<p />
Genre: <input type="text" name="genre" >
Formt: <input type="text" name="format" >
Title: <input type="text" name="title" >
</p><p>
</form>
</body>
</html>