Not used for long time

This commit is contained in:
alopexc0de 2013-02-09 19:43:17 -05:00
parent 6d1f7fc033
commit 49a76a62c0

View File

@ -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;
}
?>