* Sunda Cyber Army 2k17 *
Indonesia Defacer ~
Path : /proc/self/cwd/ |
|
Current File : //proc/self/cwd/delete_drilldown.php |
<?php
// print_r($_REQUEST);
$sql = "DELETE FROM dvd_titles WHERE dvd_titles_id = " . $_REQUEST["id"] ;
// echo $sql;
if($_REQUEST["confirm"]=="yes") {
// user has confirmed. ready to delete record
echo "user has confirmed deletion.";
echo "<br>Submit deletion sql to server: " . $sql;
} else {
// user has NOT confirmed. Need to build confirmation form
echo "user has NOT confirmed";
?>
Are you sure you want to delete this movie?
<form action="delete_drilldown.php">
<input type="hidden" name="id" value="<?php echo $_REQUEST["id"]; ?>">
<input type="hidden" name="confirm" value="yes">
<input type="submit" value="Confirm Delete">
</form>
<?php
} // end of else block
?>