<?php
$page_account = "admin";
require_once('include.php');
?>
<?php
$colname_Recordset1 = "1";
if (isset($HTTP_GET_VARS['id'])) {
$colname_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['id'] : addslashes($HTTP_GET_VARS['id']);
}
mysql_select_db($database_dbConnection, $dbConnection);
$query_Recordset1 = sprintf("DELETE FROM account_types WHERE id = %s", $colname_Recordset1);
$Recordset1 = mysql_query($query_Recordset1, $dbConnection) or die(mysql_error());
?>
<html>
<head>
<title>Membership Delete!</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<div align="center"><font color="#000000" size="2" face="Arial, Helvetica, sans-serif"><strong>The Pay Method Has Been Deleted</strong></font></div>
</body>
</html>