| 
<?php
 include("mysql_excel.inc.php");
 
 $import=new HarImport();
 $import->openDatabase("localhost","user","pwd","database");
 
 //To import the data from table
 $import->ImportDataFromTable("tablename");
 
 //To import the data from sql query
 /*
 $sql="select r.user_name,p.amount from recruiter r ,payment p where p.user_name=r.user_name"
 $import->ImportData($sql,"myXls.xls");*/
 
 //To force to download
 //$import->ImportDataFromTable("graduate","",true);
 //Or
 //$import->ImportData($sql,"myXls.xls",true);
 
 ?>
 |