'SQL/php : i am unable to delete the data from database
I am unable to delete the data. only page will we refreshed. here is code
<td><a href="manage-tiffin.php?deleteid=<?php echo htmlentities ($row->ID);?>"><i class="fa fa-trash" aria-hidden="true"></i></a></td>
Query for delete:
$query->bindParam(':did',$did,PDO::PARAM_STR);
$sql="delete from tbltiffin where ID=did";
$query = $dbh->prepare($sql);
$query->execute();````
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
