excel - download .xls file in php(cpanel) using href -
i had .xls file in report folder
<a href="http://website.com/report/saleslist.xls" download> <input type="button" class="btn btn-success" value="download report"> </a> was not working.
instead:
<a href="http://website.com/images/123.png" download> <input type="button" class="btn btn-success" value="download image"> </a> was working.
need give permission .xls format files?
thanks.
change permission of .xls file, chmod($file,0644) in php file auto generating excel file.
Comments
Post a Comment