-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc.functions.php
45 lines (40 loc) · 1018 Bytes
/
func.functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Datei: functions.php
* Erstellungsdatum: 25.07.2010
* Letzte bearbeitung: -
* Beschreibung: Verschiedene Funktionen für das Frontend
* Autor: Andreas Gyr
*/
## Mysql Injection Schutz:
function sql($value, $operator = 'no')
{
// Überflüssige Maskierungen entfernen
if (get_magic_quotes_gpc()) {
$value = stripslashes($value);
}
// In Anführungszeichen setzen, falls keine Zahl
// oder ein numerischer String vorliegt:
if (!is_numeric($value)) {
if ($operator == 'no') {
$value = "'" . mysql_real_escape_string($value) . "'";
} else {
$value = mysql_real_escape_string($value);
}
}
// Falls leer, einen leeren String simulieren:
if ($value == "") {
$value = "''";
}
// Rückgabe der Variabel:
return $value;
}
## Optionen laden
function option($option_name) {
global $prefix, $mysql;
$sql = "SELECT * FROM ".$prefix."option WHERE name = ".sql($option_name).";";
$mysql->query($sql);
$option = $mysql->fetchRow();
return $option['value'];
}
?>