background image

case "del": 
$id = $_GET['id']; 
$del_sql = "delete from `cartemp` where id=$id"; 
mysql_query($del_sql, $conn); 
echo "<script>location.href='shopcat.php'</script>"; 
break; 

?>