Posts Tagged: "PHP"

Block route by IP address in Laravel

- - Laravel

In Laravel, using middleware, you can block access to a specific route by IP address. Middleware allows you to filter HTTP requests entering your application. Here’s how you can do it step by step: Step 1: Create a Middleware Run the following Artisan command to create a new middleware: php...

Live Search with JQuery, Php and MySQL

- - Kode

Building a live search system using jQuery Ajax, PHP and MySQL. Unlike the traditional search box that reloads the page on submit, live search systems are able to return query results as you type. Many users find real-time search systems highly intuitive and fun to use. Let’s look into how...

Working With JSON, JQuery, PHP and Mysql

- - Kode

JSON stands for JavaScript Object Notation and is an excellent alternative to XML. Storing data with JSON creates JavaScript objects which can be easily parsed and manipulated. Learn how to pass JSON output to JQuery, parse JSON data with JQuery and finally inserting it into the DOM. Getting data from...