php code for Extract Alpha Numeric Characters



function get_alpha($string)
{
$new_string = ereg_replace("[^A-Za-z0-9]", "", $string);
return $new_string;
}



PHP Free Code

Posted in |