I have a php/mysql project. When the admin deletes a customer from the database on the form I need the confirm box to display the customer row that they want to delete as well as the message.
Here is current confirm box with a message
<script type = text/javascript>
function confirmDelete()
{
if(confirm("Are you sure want to delete the record?"))
{
return true;
}
return false;
}
</script>
How can I add the row of the customer that the admin wants to delete?
here is my form to delete
<script type = text/javascript>
function confirmDelete()
{
if(confirm("Are you sure want to delete the record?"))
{
return true;
}
return false;
}
</script>
</head>
<body>
<?php
include("databaselogin.php");
?>
<main>
<form class = "form" method = "post" action = "customerdeleted.php" onsubmit = "return confirmDelete()";>
<div class = "grayContainerProduct">
<div class = "formContent">
<div class = "productTitle">
Delete A Customer
</div>
<div class = "field">
<label class = "productText" for = "id">Customer ID</label>
<input class = "productInput" id = "id" name = "id" type = "text">
<div class = "buttonDiv">
<input type = "submit" class = "button" id = "buttonDelete" value = "Delete" >
</div>
</div>
</div>
</form>
</main>
Cheers!