hi,
I am trying to generate a mysql report in excel.
this is what I have currently:
Code:
<HTML>
<HEAD>
<TITLE>New Document</TITLE>
<?php
include("mysqlConnection.php");
function Data(&$str)
{
$str = preg_replace("/\t/", "\\t", $str);
$str = preg_replace("/\n/", "\\n", $str)...