Problems with insert rows

Hi everyone. I have a csv file and I try to insert in my table (codigo, stud).
    if(file_exists($ruta.$nombre_archivo.'.'."csv")) {
        $registro = fopen($ruta.$nombre_archivo.'.'."csv", "r");
        $BD = new ConectionDB();
        while (($data = fgetcsv($registro, 200, ",")) !== FALSE) {
            $sth = "INSERT into SC_TEMP (cod, nom) values ('$data[0]', '$data[1]')";
            $recordSet = $BD->prepare($sth);
            $recordSet->bindParam('data[0]', $cod);...
PHP:
Problems with insert rows

from PHP http://ift.tt/1T8KoDf
via IFTTT
Previous
Next Post »
Thanks for your comment