Hi Mindstickians,
I want to insert a record from first query i means the rows make then with seconds query to insert. can some one help me please
if ( isset($_GET['del']) ) {
$id = $_GET['del'];
while($row = mysqli_fetch_array($result))
{
echo $row['username'] . " " . $row['size'];
echo "<br>";
}
$sql = mysqli_query($con,"DELETE FROM products WHERE id='$id'");
echo "its deleted";
}
?>
Thanks in advance.
Can you answer this question?
Write Answer1 Answers