0byt3m1n1
Path:
C:
/
wamp64
/
www
/
WaterCat
/
[
Home
]
File: edit.php
<html> <head><title>Form</title></head> <body> <form method="GET" action="update.php"> P: <input type="text" class="form-control mb-2" name="code" value=<?php echo $_GET['code'];?> ><br> Title: <input type="text" class="form-control mb-2" name="title" value=<?php echo $_GET['title'];?> ><br> Location: <input type="text" class="form-control mb-2" name="location" value=<?php echo $_GET['location'];?> ><br> Job type: <input type="text" name="type" class="form-control mb-2" name="type" value=<?php echo $_GET['type'];?> ><br> Salary: <input type="text" class="form-control mb-2" name="salary" value=<?php echo $_GET['salary'];?> ><br> Expiry Date: <input type="text" class="form-control mb-2" name="date" value=<?php echo $_GET['date'];?> ><br> Job Description: <textarea rows="20" cols="50" name="desc" > <?php echo $_GET['desc'];?> </textarea><br> Experience: <input type="text" class="form-control mb-2" name="experience" value=<?php echo $_GET['experience'];?> ><br> <input type="submit" name="edit" value="update"><br> </form> </body> </html>