scusa ma sono un po nuovo..e certe cose le devo ancora ben capire io...ho una stringa cosi ....come andrebbe modificata?????
GRAZIE INFINITE

[PHP]

if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
$index = 2;
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
$singola_name="singola.php?id=$row[id]";
include("header.php");
$host="xxxx";
$user="xxx";
$pass="xxxx";
$dbname = "xxx";

$db=mysql_connect($host,$user,$pass) or die ("Errore durante la connessione al database");
echo "
";

// SELEZIONE DATABASE
mysql_select_db('Sql48725_5') or die('Selezione Database fallita !');

$result = @mysql_query(" INSERT INTO log
( data, air, airid, orig, airport, timeout, timeoff, fuelout, dest, ecc, ecc)
VALUES ( '$data', '$air', '$airid', '$orig', '$airport', '$timeout', '$timeoff', '$fuelout', '$dest', '$ecc', '$ecc')")
or die('Query di inserimento fallita !');/PHP]