Wednesday, August 29, 2012

how to export into csv and xml using php and mysql query

SELECT * INTO OUTFILE "D:/bikash.csv"
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY "\n"
FROM bikash_tble

http://127.0.0.1/test/test.php

<?php
$mysql=mysql_connect('localhost','root','');
mysql_select_db('test');
$select = "SELECT * FROM bikash_tbls";

$export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) );

$fields = mysql_num_fields ( $export );

for ( $i = 0; $i < $fields; $i++ )
{
    $header .= mysql_field_name( $export , $i ) . "\t";
}

while( $row = mysql_fetch_row( $export ) )
{
    $line = '';
    foreach( $row as $value )
    {                                           
        if ( ( !isset( $value ) ) || ( $value == "" ) )
        {
            $value = "\t";
        }
        else
        {
            $value = str_replace( '"' , '""' , $value );
            $value = '"' . $value . '"' . "\t";
        }
        $line .= $value;
    }
    $data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );

if ( $data == "" )
{
    $data = "\n(0) Records Found!\n";                       
}

header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=bikash_books.xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";
?>

No comments:

Post a Comment