Skip to content
Snippets Groups Projects
sanitization.php 188 B
Newer Older
<?
function sanitizePhone($phone){
	return ereg_replace("[ ()]", "", $phone);
}
function sanitizeAddress($address){
	return str_replace(array("\r\n","\r"),array("\n","\n"),$address);
}
?>