Originalmente inviato da
dreadnaut
Ehm... valore di default se il parametro
GET non è definito?
... si l'intento era proprio questo
il resto de codice è questo e mi servirebbe per cercare in un DB
Codice 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;
}
}
$RISsede_Recordset1 = "1";
if (isset($_GET['sede'])) {
$RISsede_Recordset1 = $_GET['sede'];
}
$RISticket_Recordset1 = "*";
if (isset($_GET['ticket'])) {
$RISticket_Recordset1 = $_GET['ticket'];
}
mysql_select_db($database_labaslto5, $labaslto5);
$query_Recordset1 = sprintf("SELECT noemalife.ticket, noemalife.id_sede, sedi.id_sedi, sedi.sedi FROM noemalife, sedi WHERE sedi.id_sedi=noemalife.id_sede AND noemalife.id_sede=%s AND noemalife.ticket=%s", GetSQLValueString($RISsede_Recordset1, "int"),GetSQLValueString($RISticket_Recordset1, "int"));
$Recordset1 = mysql_query($query_Recordset1, $labaslto5) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
Grazie