How to Check Page is Refreshed in PHP
To Check Page is Refreshed in PHP, we use PHP superglobal variable. $_SERVER[‘HTTP_CACHE_CONTROL’]: Cache-control is an HTTP protocol header which… Read More »How to Check Page is Refreshed in PHP
To Check Page is Refreshed in PHP, we use PHP superglobal variable. $_SERVER[‘HTTP_CACHE_CONTROL’]: Cache-control is an HTTP protocol header which… Read More »How to Check Page is Refreshed in PHP
To create User Login Form Validation using Ajax in PHP, first, we create major files which we connected to each… Read More »User Login Form Validation using Ajax in PHP
To Check If String Contains an Exact Match in JavaScript, we use 2 methods where we use two main JavaScript… Read More »Check If String Contains Exact Match in JavaScript
To check if Folder Or File Exists Using JavaScript, we use XMLHttpRequest() function to open that URL or file path… Read More »Check If Folder Or File Exists Using JavaScript
To Detect URL Change in JavaScript Without Refresh we use MutationObserver() function. And JavaScript location.href functionality. Before we go through… Read More »Detect URL Change in JavaScript Without Refresh
To open an external URL in PHP, we will use cURL which is a PHP library, a cURL is also… Read More »How to Open an External URL in PHP
To Convert Number To Words in PHP Ajax, we use numfmt_create() and numfmt_format() function. Both functions are inbuilt PHP functions… Read More »How to Convert Number to Words in PHP Ajax
To Set DateTime With FileName While Uploading in PHP here is only 3 steps to append a timestamp to the… Read More »Set DateTime With FileName While Uploading in PHP
To Convert String to Array in PHP Without Explode we use for loop to count the number of words on… Read More »Convert String to Array in PHP Without Explode