first commit
This commit is contained in:
49
admin/tipo_deleta.php
Executable file
49
admin/tipo_deleta.php
Executable file
@@ -0,0 +1,49 @@
|
||||
<?php require_once('../Connections/conn_sustentabilidade.php'); ?>
|
||||
<?php include('acesso.php')?>
|
||||
<?php
|
||||
if (!function_exists("GetSQLValueString")) {
|
||||
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
|
||||
{
|
||||
if (PHP_VERSION < 6) {
|
||||
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
|
||||
}
|
||||
|
||||
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
|
||||
|
||||
switch ($theType) {
|
||||
case "text":
|
||||
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
|
||||
break;
|
||||
case "long":
|
||||
case "int":
|
||||
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
|
||||
break;
|
||||
case "double":
|
||||
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
|
||||
break;
|
||||
case "date":
|
||||
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
|
||||
break;
|
||||
case "defined":
|
||||
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
|
||||
break;
|
||||
}
|
||||
return $theValue;
|
||||
}
|
||||
}
|
||||
|
||||
if ((isset($_GET['id_tipo'])) && ($_GET['id_tipo'] != "")) {
|
||||
$deleteSQL = sprintf("DELETE FROM tbtipos WHERE id_tipo=%s",
|
||||
GetSQLValueString($_GET['id_tipo'], "int"));
|
||||
|
||||
mysql_select_db($database_conn_sustentabilidade, $conn_sustentabilidade);
|
||||
$Result1 = mysql_query($deleteSQL, $conn_sustentabilidade) or die(mysql_error());
|
||||
|
||||
$deleteGoTo = "index.php";
|
||||
if (isset($_SERVER['QUERY_STRING'])) {
|
||||
$deleteGoTo .= (strpos($deleteGoTo, '?')) ? "&" : "?";
|
||||
$deleteGoTo .= $_SERVER['QUERY_STRING'];
|
||||
}
|
||||
header(sprintf("Location: %s", $deleteGoTo));
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user