I have some code here to update my database based on two columns in the CSV. The CSV file would look like this:
ID Response
1 Hello1
2 Hello2
3 Hello3
In my database I have a table that also contains an id column and an extra column that matches response. The idea is this CSV file is uploaded and will populate the response that matches the ID number.
Basically this: "UPDATE tbl_data SET response = {$response} WHERE id = {$id}"
The form that performs this action look like this:
<form method="post" name="uploadCSV" enctype="multipart/form-data">
<label>Choose CSV File</label>
<input type="file" name="csv_file" id="file" accept=".csv" />
<button type="submit" name="import" class="read-more smaller">Upload</button>
</form>
However, I don't think I've understood how to do this properly, as I get SQL errors, or the form just sits there as if nothing has happened. See code below.
if (isset($_POST["import"])) {
if($_FILES["csv_file"]["name"]){
$filename = explode(".", $_FILES["csv_file"]["name"]);
if(end($filename) == "csv"){
$handle = fopen($_FILES["csv_file"]["tmp_name"], "r");
while ($data = fgetcsv($handle)){
$id = $data[0];
$response = $data[1];
$query ="UPDATE tbl_data SET response = {$response} WHERE id = {$id}";
$update_data = mysqli_query($connection,$query);
if (!$update_data) {
$message = "There was a problem updating your CSV file. If this problem reoccurs, please contact admin";
die (mysqli_error($connection));
}
}
fclose($handle);
header("Location: upload.php?uploaded=1");
} else {
$message = "You can only upload a CSV file.";
}
} else {
$message = "Please select a CSV file.";
}
}
I have the $message to shows the message. but it doesn't show up any of the messages, and the update in the database doesn't appear to take place either.
Is there any errors that I may have overlooked in my code? Or is there a much better way to do this?
$message = "There was a problem updating your CSV file...will never show anyway because youdie()immediately afterwards which stops the script executing. But you should see the mysqli error in that scenario. Do you ever see that? You mentioned sometimes getting SQL errors, but then didn't tell us what they were.$responseis a string (e.g. "hello") yet you aren't enclosing it in quote marks in the SQL statement. To be honest though you really should use prepared statements and parameterised queries to guard against the possibility of malicious input in the CSV file turning you into a victim of SQL injection. It will also take care of things like escaping string inputs properly, thus avoiding unexpected syntax errors in the SQL statement.$message.