How to Receive JSON POST with PHP

How to Receive JSON POST with PHP

We all know that $_POST is used to collect post data in PHP. That’s true. But when we try to get JSON post data using $_POST then it fails. Recently I was working on project and need to receive JSON POST with PHP. I had expected that JSON POST data in $_POST superglobal variable but … Read more

jQuery Disable Button After Click

jQuery Disable Button After Click

We always use a button in HTML form for submission. When a website responds slow to user after click on the button then, user click multiple times on it. Multiple click on the submit button, send multiple request to the server for processing which is not good for any web application. This tutorial will help … Read more

Redirect Page after Certain Time using PHP, JavaScript or META Tag

Redirect Page after Certain Time using PHP, JavaScript or META Tag

Do you want to redirect the website after a certain amount of time or Page redirect after a certain time PHP? In this tutorial, we will see how to redirect a page after 5 seconds using PHP, JavaScript, and Meta tags. Here are some basic concepts to redirect a page after some time. These functions … Read more