mirror of
https://github.com/c0de-archive/GAMA-Site.git
synced 2024-12-22 17:42:40 +00:00
Not used for long time
This commit is contained in:
parent
6d1f7fc033
commit
49a76a62c0
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
/* Sanatize() function to sanitize untrusted input before processing
|
||||
* Takes $input and returns $output
|
||||
* Use this before sending anything to database.
|
||||
* All form inputs should run through this first
|
||||
*/
|
||||
|
||||
function sanatize($input){
|
||||
if ($input == null) die("Sanatize() - No Input Provided, Aborting\r\n<br>"); // Append error into common error string for parsing later
|
||||
// To protect MySQL injection (more detail about MySQL injection)
|
||||
$output = strip_tags($input);
|
||||
$output = stripslashes($output);
|
||||
$output = mysql_real_escape_string($output);
|
||||
$output = strtolower($output);
|
||||
return $output;
|
||||
}
|
||||
|
||||
function cln_file_name($string) {
|
||||
$cln_filename_find=array("/\.[^\.]+$/", "/[^\d\w\s-]/", "/\s\s+/", "/[-]+/", "/[_]+/");
|
||||
$cln_filename_repl=array("", ""," ", "-", "_");
|
||||
$string=preg_replace($cln_filename_find, $cln_filename_repl, $string);
|
||||
return trim($string);
|
||||
}
|
||||
|
||||
function get_ext($name) {
|
||||
$name = substr(strrchr($name, "."), 1);
|
||||
return $name;
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user