Posts
All
Popular
MySQL1PHP1
Echo or get the current page URL in a PHP page, use $_SERVER. Its build-in variable in PHP, which is used to fetch or echo the current page URL. It’s available for all scope and its super global variable. The below examples show how it works and check URL on HTTPS or HTTP. <?php if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'){ $url = 'https://'; }else{ $url = "http://"; } $u...

Get full current page URL in PHP

Feb 08, 2022
84 views
How to import, export, and create a database in MySQL or MariaDB Create a new database in MySQL or MariaDB First login to MySQL shell or MariaDB in putty using the below command. mysql -u root -p Create new database mysql> create database new_website; Check your database create or not use mysql> show databases; List of all databases will show in tables format.   Export MySQL or MariaDB ...

Create, Import and Export Database in MySQL or MariaDB by Putty

Feb 08, 2022
246 views

MyFreeOnlineTools. Simple & powerfull online free tools for make your work easy and great

Feb 08, 2022
121 views

Generate Random Fake Data Online

Feb 07, 2022
66 views