Category «PHP»
How to Highlight a Deleted Row in PHP
Send Email using PHP
Sending email messages is a very common feature of a web application.Send Email using PHP You can use the PHP mail() function for creating and sending email messages to one or more recipients dynamically from your PHP application either in a plain-text form or formatted HTML. Learn more about PHP Mail Function https://www.php.net/manual/en/function.mail.php The Basic syntex …
Codeigniter 4 CRUD Operation With Ajax Example
In this article, We will inform you how to perform crud operation with ajax in CodeIgniter 4.Codeigniter 4 CRUD Operation With Ajax Example Learn CodeIgniter 4 from its official Website https://www.codeigniter.com/ In CI 4 We can make a good design with a secure CRUD Operation. if you want to create a CRUD operation with ajax …
Netflix clone app using Laravel

Netflix clone app in Laravel with Bootstrap. We can make any kind of Project in Laravel.Netflix clone app using Laravel. Netflix in Laravel Netflix Clone project is a web application which is developed in Laravel platform . Below is our Database table design . ( Database name : You can change db name ) Now …
login form in React with Laravel

In this article, I would like to show you how to make a simple login form in React. Login form in React with Laravel. I will use Laravel for Rest API. Because We must need one server-side language for database transactions. I will use Material UI for Form designing. Learn more about Material UI. React …
PHP CRUD Application using OOP and MYSQL

PHP: CRUD (create, read, update, and delete) with databases is a common function of web applications. In this tutorial,PHP CRUD Application using OOP and MYSQL. I will teach you how to develop CRUD operations with PHP and MySQL using the OOP (Object Oriented Programming) technique. The tutorial is explained in easy steps handle of creating, …
PHP MySQL Ajax Live Search

Welcome to a tutorial on how to search and display results from the database using PHP and MySQLPHP MySQL Ajax Live Search. In this tutorial we’re going to create a live search box that will search the Movies table and show the results asynchronously. But, first of all, we need to create this table. Step 1: …
Export MySQL Data To Excel in PHP

Sometimes, you may need to export MySQL Data to Excel formats. Export MySQL Data To Excel in PHP The database or tables of the MySQL database can be exported into various file formats, such as CSV, XML, SQL, Excel, etc., by using the PHP client, phpMyAdmin. It is also possible to export MySQL data using …
Send Forgot password by mail or message in PHP
We can create Forgot Password feature using PHP. PHP is a popular language Send Forgot password by mail or message in PHP. You know about validate login forms with remember me and sign-out concepts using PHP.Get more knowledge about PHP from its official website: https://php.net/ Now see about how to send forgotten password to mail …