Convert HTML to PDF using PHP code (HTML2FPDF Class library) In web development, you often need to create PDF (Portable Document Format) to view or download/ print a document. Here is a simple class that will provide you a simple way to do create PDF.HTML2FPDF Class library consist of three classes namely PDF, HTML2FPDF…
A problem that often occurs in web development is a conflict between your jQuery function and some other JavaScript library. This is due to many JavaScript libraries use $ as a function or variable name, just as jQuery does. In jQuery’s case,$ is just an alias for jQuery, so all functionality is available without…
Top 5 most popular internet web browsers A large number of people use the browser that comes with their computer’s operating system. Internet Explorer on Windows Safari on the Mac Firefox on Linux Apart from these Microsoft’s Internet Explorer is still the world’s most popular browser, but (IE) and Mozilla’s Firefox lost a…
How to check whether mod_rewrite module is enabled/loaded or not in Apache There are lots of techniques to check this but below is very simple technique to check whether mod_rewrite module is enabled or not in you web server. 1) Create a file, Type <?php echo phpinfo(); ?> in that file and save…
How to figure out whether PHP extension is loaded or not on your page? Usually in phpinfo() doesn’t show you all the loaded extensions in one location, it has got a separate section for each loaded extension where it shows all of its variables, file paths, etc so if there is no section for…
PHP: Backup Your Website’s MySQL Database It is always good to backup your MySQL database regularly. You should also create a backup before making any major changes, in case something goes wrong and you need to revert to the unmodified version, then you will found yourself in safe hand. Database backups can also be…