salve sono riuscito a creare un album foto per ogni utente registrato usando la sessione ma non riesco a eliminare la foto salvata nel database chiedo aiuto posto ciò che sono riuscito a creare
-----------------
upload
Codice PHP:
<?php
include("db.php");
$query=mysqli_query($conn,"SELECT * from photos where firstname='".$_SESSION['firstname']."' ")
or die(mysqli_error());
while($row=mysqli_fetch_array($query)){
$firstname = $row['firstname'];
?>
<div class="photo-select">
<br>
<center>
<img src="album/<?=$row['image']?>">
</center>
<hr>
<div class="d-flex justify-content-center">
<a href="delete_photos.php<?php echo '?id='.$id; ?>" class="btn-delete-photos">Delete</a>
</div>
delete
Codice PHP:
<?php
include('db.php');
$firstname =$_GET['firstname'];
// sending query
mysqli_query($conn,"DELETE FROM photos WHERE photo_id = '$firstname'")
or die(mysqli_error());
header("Location: photos.php");
?>
dove sbaglio???