I am trying to preg_replace() all except letters and numbers (see below). Its not outputting anything though. Everything works when I comment out the preg_replace lines. Can someone help?
$reg_letnum = "/[^A-Za-z0-9/d ']/";
$street = $_POST['street'];
$street = ucwords(preg_replace($reg_letnum,'',$street));
/dsupposed to do inside the class? Especially thed, which is already covered bya-z. – Jon Jun 30 '12 at 16:43