Anything in here that would escape string (PHP)
        Posted  
        
            by Belgin Fish
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Belgin Fish
        
        
        
        Published on 2010-05-06T12:01:09Z
        Indexed on 
            2010/05/06
            12:08 UTC
        
        
        Read the original article
        Hit count: 130
        
php
$_GET['search'] = ucfirst(strtolower(str_replace("_"," ",urldecode($_GET['search']))));
For some reason it's adding slashes into the string similar to mysqL_escape_string, anyone got any ideas what would be causing it?
© Stack Overflow or respective owner