What I want to do is to replace stuff A-Z plus underscores(_)... How should I do that?
Is this correct?
$str = preg_replace("[_A-Z]","",$str);
I'm good at php, but when it comes to this, then I'm a n00b... lol
Remember that regular expressions start and end with delimiters:
$str = preg_replace("/[_A-Z]/","",$str);
Diego