Delete.php :
delete.html :
Per quale motivo poi quando vado ad utilizzare la variabile nel secondo if non ha più il valore che gli è stato assegnato nel primo if ma è vuota ?
P.S : Arrivo alla pagina Delete.php da un link in un'altra pagina html. La pagina in cui arrivo ho deciso che è Delete.php?element=qualcosa
PHP:
<?php
include("html/delete.html");
$element=null;
if(isset($_GET['element'])){
$element =$_GET['element'];
}
if(isset($_GET['delete']) and $_GET['delete']=="yes"){
$mydatabase = mysqli_connect('localhost','root','','passwordb');
$deletequery = "DELETE FROM `informations` WHERE site='$element'";
$queryresult = mysqli_query($mydatabase, $deletequery) or die(mysqli_error($mydatabase));
mysqli_close($mydatabase);
echo "<br><br>This row ($element) has been deleted";
}
?>
HTML:
<html>
<head>
<title> Delete </title>
<head>
<body>
Are you sure ?
<br>
Do you want delete this row ?
<a href="Delete.php?delete=yes">YES</a>
<a href="index.php">NO</a>
<br><br>
<h2>
<a href="index.php">Your Profile</a>
</h2>
</body>
</html>
P.S : Arrivo alla pagina Delete.php da un link in un'altra pagina html. La pagina in cui arrivo ho deciso che è Delete.php?element=qualcosa
Ultima modifica di un moderatore: