Related Articles
Top Best WordPress Audio Player Plugins
1. Audio Album audio albumAudio Album uses the default audio capabilities of mediaelement.js included with core WordPress files and enables you to style a group of audio files (MP3 etc) as single block formatted as an album. A basic stylesheet is included, however this is intended to be used as a starting point with custom […]
Do You Know Difference Between F5 and CTRL+F5
While debugging code or writing code many developers come across refreshing a page, but do you know what exactly the difference between F5 and CTRL+F5? When a user press F5 a new request is sent to the web server and in it sends backs a response for the request as well. But when the response header […]
Firefox Excel Application Issue
If you are not able to download the excel in Firefox and where it is working fine in Chrome and IE then have a look at below code. To work in Firefox Excel Issue Just add below code in headersheader(“Content-type: application/vnd.ms-excel”); See below for full code header(“Content-disposition: attachment;filename=example.xls”);header(“Content-type: application/vnd.ms-excel”);header(“Pragma: public”);header(“Expires: 0”);header(“Cache-Control: must-revalidate, post-check=0, pre-check=0”);header(“Cache-Control: private”, […]