POST Request Method in PHP with Source Code In software development using php, POST Method is very popular name and easily to use and handle data. When we pass data from one page to another page we can use POST method. In this way, user also show all the data which passing in the POST […]
PHP Form Get Method With Source Code Example
PHP Form Get Method With Source Code Example In software development using php, Get Method is very popular name and easily to use and handle data. When we pass data from one page to another page we can use get method. In this way, user also show all the data which passing in the get […]
Populate Dependent Dropdown using Jquery AJAX PHP
Populate Dependent Dropdown using Jquery AJAX PHP Every software need Dropdown in many place like gender, department, religion and so many place. In PHP we can easily populate dependent dropdown with the help of Jquery and AJAX which easily collect those information from the user only select. Let’s discuss index.php page for dependent select option […]
PHP Split String using Explode into PHP Array then PHP Concat
PHP Split String using Explode into PHP Array then PHP Concat One day I have faced a simple problem. In my software, user input 3-4 that equal 3.5, also input 4-5 that equal 4.5 no problem. But issue is that user can input both 3-4/3.5, we send this value 3.5 in server. This problem we […]