I need to export all data from a MySql table to excel. I'm using the code below, which is working fine.
The problem is: there are 2 fields that are integers with more then 30 digits. So when I export it to the .csv file, excel transforms them into scientific notation.
Example: the field "95145612345641859415634194164163" transforms into "9.51456E+31"
How can I force it to read it as a string?
<?php
exportMysqlToCsv('export_csv.csv');
function exportMysqlToCsv($filename = 'export_csv.csv')
{
$conn = dbConnection();
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql_query = "SELECT * FROM cadastros";
$result = $conn->query($sql_query);
$f = fopen('php://temp', 'wt');
$first = true;
while ($row = $result->fetch_assoc()) {
if ($first) {
fputcsv($f, array_keys($row));
$first = false;
}
fputcsv($f, $row);
} // end while
$conn->close();
$size = ftell($f);
rewind($f);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Length: $size");
header("Content-type: text/x-csv");
header("Content-type: text/csv");
header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=$filename");
fpassthru($f);
exit;
}
// db connection function
function dbConnection(){
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "creche_escolas";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
return $conn;
}