-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectConfirmDelPet.php
More file actions
46 lines (35 loc) · 1.47 KB
/
ProjectConfirmDelPet.php
File metadata and controls
46 lines (35 loc) · 1.47 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
44
45
46
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
///////////////////////////////////////////////////////
// Name: Nancy Mikyska
// Login: nancy
// Class: CIS-2360 Fall 2017
// Assignment: Confirm delete Pet
// File: ProjectConfirmDelPet.php
// Purpose: Pet to be deleted from db confirmation
///////////////////////////////////////////////////////
-->
<?php
///////////////////////////////////////
// get the pet Id
$petId = filter_input(INPUT_GET, "pet");
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Nancy M. - Project Confirm to Delete Pet</title>
<?php require("ProjectHeader.php"); ?> <!--call to header file-->
</head>
<body>
<h1>Nancy M. - Project Confirm to Delete Pet</h1>
<h3 class="bold">Are you absolutely, positively sure your want to delete this pet?</h3> <br /><br />
<a href="ProjectDeletePet.php?pet=<?php echo $petId; ?>" class="button">Yes</a>
<a href="ProjectDisplayAll.php" class="button">No</a>
<br /><br />
<br /><br />
<a href="ProjectDisplayAll.php" class="button">Back to Pet List</a>
<br /><br />
<br /><br />
<?php require("ProjectFooter.php"); ?>
</body>
</html>