$_GET['search'] = ucfirst(strtolower(str_replace("_"," ",urldecode($_GET['search']))));
Nedense kimse bunu neden olacağını ne herhangi bir fikir var, mysql_escape_string benzer dizeye bölü ekleyerek oluyor?
En büyük olasılıkla magic_quotes_gpc on 'de ayarlanmış php.ini. Bunu önlemek istiyorsanız, böyle bir kontrol yapmak:
if (get_magic_quotes_gpc())
{
$mytext = stripslashes($your_text);
}
// and your further code....
Bu magic_quotes_gpc is turned on. You can get the setting with get_magic_quotes_gpc() a> gibi geliyor.