Welcome Guest, Not a member yet? Register   Sign In
Convert CSV to EXCEL
#1

[eluser]Sudz[/eluser]
how to convert csv to excel in php.
Any example please reply.
#2

[eluser]InsiteFX[/eluser]
Convert csv to xls (excel) in php

InsiteFX
#3

[eluser]Sudz[/eluser]
I have refer the tutorial you suggested
but it is not working i got this notice
Code:
Notice: Undefined index: path in excel.php on line 75

Notice: Undefined variable: size in excel.php on line 163

Here is my code
Code:
$fp = fopen("xlsfile://example.xls", "wb");
if (!is_resource($fp))
{
    die("Cannot open $export_file");
}
// typically this will be generated/read from a database table
$assoc = array(
    array("Sales Person" => "Sam Jackson", "Q1" => "$3255", "Q2" => "$3167", "Q3" => 3245, "Q4" => 3943),
    array("Sales Person" => "Jim Brown", "Q1" => "$2580", "Q2" => "$2677", "Q3" => 3225, "Q4" => 3410),
    array("Sales Person" => "John Hancock", "Q1" => "$9367", "Q2" => "$9875", "Q3" => 9544, "Q4" => 10255),
        );
            
fwrite($fp, serialize($assoc));
fclose($fp);
#4

[eluser]InsiteFX[/eluser]
You might be able to use this, rename it excel_helper and place in the application/helpers folder.
Excel Plugin

InsiteFX




Theme © iAndrew 2016 - Forum software by © MyBB