Im new to php. Sto cercando di leggere un file di testo e inserire dati riga per riga nel database. Il mio problema è per alcune query di inserimento di caratteri speciali non funziona
Ad esempio Côte
, d.ä.
, d.y.
, DAB-sändare
queste funzionano tutte. Ma non posso inserire d'affaires
. Se rimuovo d'affaires
la query verrà eseguita altrimenti non inserirà alcun dato nel database. Il codice php che ho usato per reaf e inserire al database è
I caratteri speciali non possono essere inseriti nel database
mysql_connect("localhost","root","");
mysql_select_db("testdb");
$query="INSERT INTO keywords (id, keyword) VALUES ";
$handle = fopen("Ordlista.txt", "r");
if ($handle) {
$i=1;
while (($line = fgets($handle)) !== false) {
// process the line read.
// echo $line.'<br>';
if($i==1)
{
$query.=" (NULL , '".$line."') ";
$i++;
}
else {
$query.=" ,(NULL , '".$line."') ";
}
}
$query.=";";
// $qr=htmlspecialchars($query,ENT_QUOTES);
echo $query;
mysql_query($query);
} else {
echo 'error opening the file.';
// error opening the file.
}
fclose($handle);
AGGIORNATO
Ho usato questo codice durante la creazione di un plug-in WordPress allora i caratteri speciali stanno inserendo come '?
'. Nel codice precedente è stato file di lavoro la modifica del codice ho fatto è
mysql_query("TRUNCATE TABLE $table");
// $structure = "INSERT INTO $table (`id`, `keyword`) VALUES (NULL, 'test1'), (NULL, 'test2');"; // Keywords for Testing
// $wpdb->query($structure);
//read text file & insert to database start
$query="INSERT INTO $table (id, keyword) VALUES ";
$fllocation=PLG_URL.'/Ordlista.txt';
$handle = fopen($fllocation, "r");
if ($handle) {
$i=1;
while (($line = fgets($handle)) !== false) {
// process the line read.
if($i==1)
{
$query.=" (NULL , '".mysql_real_escape_string($line)."') ";
$i++;
}
else {
$query.=" ,(NULL , '".mysql_real_escape_string($line)."') ";
}
}
$query.=";";
$wpdb->query($query);
// echo $query;
// mysql_query($query);
} else {
echo 'error opening the file.';
// error opening the file.
}
fclose($handle);
prova mysql_real_escape_string() –
[Perché non dovrei usare le funzioni mysql_ * in PHP?] (http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql-functions-in-php) – Phil
Dopo aver letto il tuo aggiornamento: qual è il tuo charset e il tuo fascicolo tavolo? – Sal00m