I have a php file where i export data from database to excel using
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment;Filename=cel.xls");
Now, i want to delete the first row of the file before it is exported. Can anyone help me on this?