-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewCity.php
More file actions
43 lines (34 loc) · 1.1 KB
/
Copy pathnewCity.php
File metadata and controls
43 lines (34 loc) · 1.1 KB
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
<html>
<body>
Welcome to <?php
error_reporting(0);
echo $_POST["name"];
echo "<br>";
$city = $_POST["name"];
?><br>
<form action="hotel.php" method="post">
<input type="submit" name="submit" value="Hotels" />
<input type="hidden" name="pk" value="<?php echo $city; ?>">
</form>
<form action="restuarent.php" method="post">
<input type="submit" name="submit" value="Restuarents" />
<input type="hidden" name="pk" value="<?php echo $city; ?>">
</form>
<form action="" method="post">
<input type="submit" name="submit" value="Flights" />
<input type="hidden" name="pk" value="<?php echo $city; ?>">
</form>
<form action="" method="post">
<input type="submit" name="submit" value="Vacation Rentals" />
<input type="hidden" name="pk" value="<?php echo $city; ?>">
</form>
<form action="" method="post">
<input type="submit" name="submit" value="Rental Car" />
<input type="hidden" name="pk" value="<?php echo $city; ?>">
</form>
<form action="thingsToDo.php" method="post">
<input type="submit" name="submit" value="Things to do" />
<input type="hidden" name="pk" value="<?php echo $city; ?>">
</form>
</body>
</html>