nel link che mi hai dato c'è questa funzione.
codice:
function quote_smart($value)
{
   // Stripslashes
   if (get_magic_quotes_gpc()) {
       $value = stripslashes($value);
   }
   // Quote if not integer
   if (!is_numeric($value)) {
       $value = "'" . mysql_real_escape_string($value) . "'";
   }
   return $value;
}
Che teoricamente potrebbe andare bene, il problema che il php mi da errore


Fatal error: Call to undefined function: mysql_real_escape_string() in modifica_rubriche.php on line 58


come posso fare?