A simple PHP header not working -
the header not redirecting
<?php include_once "header.php"; include_once "connect.php"; include_once "dao/product-dao.php"; $id = $_get['id']; removeproduct($conn, $id); header('location: product-list.php'); what problem header?
Comments
Post a Comment