0byt3m1n1
Path:
C:
/
wamp64
/
www
/
WaterCat
/
[
Home
]
File: reply.php
<html><head><title>Form</title> <link rel="stylesheet" type="text/css" href="styles.css"> <link rel="stylesheet" type="text/css" href="nav.css"> </head> <body class="bg-white" background="assets/images/slider/s1.jpg" alt=""> <div class="topnav"> <a class="active" href="indexnew.php">Home</a> <a href="#news">News</a> <a href="contact.php">Contact</a> <a href="about.html">About</a> </div> <form action="resinsert.php" method="GET"> <h1 text-align: center; > Response Form</h1> <div class="form-group" class="container"><br><br><br><br> <label> ID </label> <input type="text" name="id" class="form-control" id="exampleInputName" value=<?php echo $_GET['id'];?> size="25"><br><br> </div> <div class="form-group"> <label> Name</label> <input type="text" name="name" value=<?php echo $_GET['name'];?>> <br> <br> </div> <div class="form-group"> <label> Email </label> <input type="text" name="Email" class="form-control" id="inputAddress" value=<?php echo $_GET['Email'];?> required><br><br> </div> <div class="form-group"> <label> Mobile </label> <input type="text" name="Mob" class="form-control" id="inputAddress" value=<?php echo $_GET['Mob'];?> required><br><br> </div> <div class="form-group"> <label> Queries</label> <textarea rows="2" cols="20" name="msg" > <?php echo $_GET['msg'];?> </textarea> <br> <br> </div> <div class="form-group"> <label> Response</label> <textarea rows="2" cols="20" name="res" > </textarea> <br> <br> </div> <input type="submit" name="submit" value="submit"> </form> </div> </body> </html>