13 lines
239 B
PHP
Raw Permalink Normal View History

2024-06-17 22:42:14 +10:00
<?PHP
include("config.php");
if (!$_POST){ header('Location: '.$site_url); }
$sql = "DELETE FROM gforum_Retailers WHERE retailer_id = '$_POST[retailer_id]'";
mysql_query($sql) or die(mysql_error());
header('Location: '.$site_url);
?>