How to get current page full URL in PHP

Post Views: 14 Step 1: Deciding on the SSL protocol whether the site using http or https. if(isset($_SERVER[’HTTPS’]) && $_SERVER[’HTTPS’] === ‘on’) { $url = ‘https’; } else { $url = ‘http’; }...

How to create load more function with jQuery

Post Views: 12 Step 1: Create the html containers that needed to be used for the load more function. HTML <!DOCTYPE html> <html> <head> <title>CSS with Superpowers</title> <link rel=”stylesheet” href=”public/css/style.css”>...