Mysql
 sql >> Database >  >> RDS >> Mysql

importazione CSV in MySQL tramite PHP

Stai usando PDO per stabilire una connessione al database. Ma $pdo l'istanza non viene più utilizzata!

Per eseguire un'istruzione SQL, devi usare come $pdo->query("INSERT INTO mobi ...")

Invece, stai usando mysql_query per inviare una query MySQL. Quindi ricevi questi avvisi:

Access denied for user 'root'@'localhost' (using password: NO)

A link to the server could not be established

Assicurati inoltre di non produrre stringhe, ecc... prima del tuo header() funzione per rimuovere questo avviso:headers already sent .