Related Articles
How to Get Current Page URL Using PHP
If you would like to know from which page the request has come from using post Method then there is a simple PHP script can solve your issue. Get Current Page URL Using PHP Check below script to Get Current page using PHP function getCurrentURLPage() { $s = empty($_SERVER[“HTTPS”]) ? ”: ($_SERVER[“HTTPS”] == “on”) ? […]
10 Free Bootstrap Admin Dashboard Templates and Themes
If you are looking for free bootstrap admin dashboard templates then check out below 10 best free dashboard templates with latest version of bootstrap and are fully open source which means you can use it for your personal and commercial purpose. Free Bootstrap Admin Dashboard Templates 1. Design Bootstrap template is a free dashboard template […]
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 […]