Hello there
i am using this php script
else if (isset($_POST['bt4']))
{
$popStud =
"LOAD DATA INFILE stud.txt INTO TABLE student FIELDS TERMINATED BY '|' ESCAPED BY '\' LINES TERMINATED BY '\r\n'";
$res_pop = $db->query($popStud);
}
athough the query works fine if used with MySQL, it does not work when the user presses the button. Does anybody know why?