boostrap one page templates Bootstrap Themes Free boostrap themes free one page boostrap themes free single page bootstrap template one page free boostrap templates one page templates

17 Free Bootstrap One Page Themes and Templates

Below are the list of free bootstrap single page or one page templates and all the templates are responsive and made of bootstrap 3 and are open source, you can use them for your personal and business purpose. Check out below for Free one page bootstrap templates. Enlarge the image for perfect demo. Free Bootstrap […]

convert html to pdf convert html web page to pdf and download conver html to webpage using dompdf convert html webpage to pdf convert url to pdf Convert WebPage to PDF

How to Convert HTML WebPage to PDF Using PHP

Convert a web page into PDF format, download and save into folder as below. Include dompdf_config.inc.php file from the library. Create a folder for saving the PDF file which is generated from the webpage. HTML code to convert on submit: Download dompdf library from the github which is free. Click here to download.

techfolks mysql tutorials
db size query Mysql Mysql database query query to get db size

How to Get Size of a Database in Mysql

To Get Data Base Size in MB  and Free Space in MBSELECT table_schema “dbName”,    sum( data_length + index_length ) / 1024 / 1024 “Data Base Size in MB”,    sum( data_free )/ 1024 / 1024 “Free Space in MB”FROM information_schema.TABLESGROUP BY table_schema ; To Get Size in GB: SELECT  sum(round(((data_length + index_length) / 1024 […]