Friday 7 June 2013

Export CSV file in PHP

  header("Content-type:text/octect-stream");
  header("Content-Disposition:attachment;filename=data.csv");
 $recordlist = $this->db->query("SELECT * FROM `table` ");

        foreach($recordlist ->result_array() as $row)
        {
            print '"' . stripslashes(implode('","',$row)) . "\"\n";
        }
        exit;

How to enable gzip compression using cpanel

Login into cpanel  -> Software/Services -> Optimize Website -> Now Click on 'Compress all content'

Now check your site performance using this site
http://gtmetrix.com/