PHP
wenn (! function_exists („GetSQLValueString“)) {
Funktion GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc ()? stripslashes ($theValue): $theValue;
$theValue = function_exists („mysql_real_escape_string“)? Mysql_real_escape_string ($theValue): Mysql_escape_string ($theValue);
schalten ($theType) {
„Text“ umkleiden:
$theValue = ($theValue! = "")? „„“. $theValue. „“ „: „NULL“;
Bruch;
Fall „lang“:
Fall „int“:
$theValue = ($theValue! = "")? intval ($theValue): „NULL“;
Bruch;
Fall „Doppeltes“:
$theValue = ($theValue! = "")? „„“. doubleval ($theValue). „“ „: „NULL“;
Bruch;
Fall „Datum“:
$theValue = ($theValue! = "")? „„“. $theValue. „“ „: „NULL“;
Bruch;
Fall „definiert“:
$theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;
Bruch;
}
Rückhol$theValue;
}
}
$colname_rs_request = „- 1“;
wenn (isset ($_SESSION [„RequestName“])) {
$colname_rs_request = $_SESSION [„RequestName“];
}
mysql_select_db ($database_My_DB, $My_DB);
$query_rs_request = sprintf („* vom Antrag VORWÄHLEN, WO RequestName = %s“, GetSQLValueString ($colname_rs_request, „Text“));
$rs_request = mysql_query ($query_rs_request, $My_DB) oder sterben (mysql_error ());
$row_rs_request = mysql_fetch_assoc ($rs_request);
$totalRows_rs_request = mysql_num_rows ($rs_request);
? > |