Experts ! Please help me achieve my task.
I need to renter and display spreadsheet in browser using php and shouldn't open the pop up window "Save As" asking user to open/save.It should open the xl sheet in the brower with out tool bar of xl .
the following code works fine and doesn't open pop up window in IE 7.0.
It shows pop up window in IE 6.0 .Even if i click open ., it opens in the xl not in the brower.Please help me fix this issue.
<?php
header("Content-type: application/x-msexcel");
header("Content-type: application/octet-stream");
header('Content-Disposition: inline; filename="'.basename($export_file).'"');
readfile($export_file);
?>