This doesn't seem to be deleting the session row...and I'm not sure what I'm doing wrong...
elseif(isset($_GET['del'])){
include ("cart/includes/db.conf.php");
include ("cart/includes/connect.inc.php");
$query2=("delete from catalog where session='$_GET[del]'");
$res=mysql_query($query2) or die("SQL: $query<br />\nError: ".mysql_error());
echo "<script type=\"text/javascript\">window.location = \"manage.php?action=expiredview\";</script>";
}