This code is a PHP function that generates a CSV file from a SELECT query result and allows the user to download it. It utilizes the PHP fputcsv function to write data to the CSV file.
- PHP version 5.6.0 or higher
- PDO extension enabled
composer require vijaykumar/sql-to-csv:dev-master@dev
-
Include the code file containing the
generate_csvfunction in your PHP project. -
Create a database connection object using PDO and pass it as the first parameter to the
generate_csvfunction. -
Provide a valid SELECT query as the second parameter to the
generate_csvfunction. Only SELECT queries are allowed. -
Specify an optional filename as the third parameter to the
generate_csvfunction. If not provided, the default filename will be "Report.csv". -
Call the
generate_csvfunction to generate the CSV file and initiate the download.
<?php
require_once "./vendor/autoload.php";
use Vijaykumar\SqlToCsv\GenerateCsv;
// Create a database connection
$conn = new PDO("mysql:host=localhost;dbname=mydatabase", "username", "password");
// Create an instance of the GenerateCsv class
$csvGenerator = new GenerateCsv();
// Generate the CSV file
$csvGenerator->generate_csv($conn, "SELECT * FROM mytable", "UserReport");
?>