Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 7.06 KB

05-advanced.md

File metadata and controls

33 lines (26 loc) · 7.06 KB

Stars Badge Forks Badge Pull Requests Badge Issues Badge GitHub contributors Visitors

Don't forget to hit the ⭐ if you like this repo.

PHP: Advanced PHP Syntax

The table provides information about various lessons related to advanced PHP topics. Each row represents a different lesson and includes details such as the lesson number, topic, description, and a link to access the corresponding file. The topics covered range from shopping cart implementations to features like discount coupons, captcha usage, comments systems, and Trello-like drag and drop cards. The description for each lesson provides an overview of the functionality and purpose of the topic. The "Result" column includes a button with an icon and a link that allows users to access the respective lesson file. This table serves as a comprehensive reference for individuals interested in exploring advanced PHP concepts and implementing related features in their projects.

Lesson Topic Description Result
15a Shopping Cart: One Page Checkout One page checkout is a way to make the eCommerce checkout process easier. It reduces the navigation effort, page redirects. It gets the job done by retaining the buyer in a single page.
15b Simple PHP Shopping Cart In this tutorial, let’s create a simple PHP shopping cart software with MySQL. PHP shopping cart example has the following functionality: (1) Retrieve product information from the database. (2)Create product gallery for the shopping cart. (3) Manage cart items using the PHP session. (4) Handle add, edit, remove and empty cart actions. DB: demo1, Table: tblproduct.
15c Shopify Like Shopping Cart This Shopify-like sticky shopping cart software in PHP uses database and PHP sessions. It manages products in the database and shopping cart items in the PHP session. DB: demo1, Table: tblproduct
15d Discount Coupon In general eCommerce applications announces discount offers, gift vouchers as like as physical stores. This kind of pricing offers will work for the online stores compared to other offline businesses. Because the applications might provide an option for internal marketing invite more customers via customers. DB: demo1, Table: tblproduct and tbl_discount_coupon (phpsamples.sql)
15e PHP Captcha using jQuery AJAX Captcha code in a form is used for ensuring that the form is submitted with manual intervention without any tools or programs. We are using jQuery AJAX for getting captcha image from PHP. Using jQuery, we can also refresh the captcha code by resending AJAX call to generate new captcha image
15f PHP Comments System with Like Unlike This comments system allows the user to add comments and to add replies to a particular comment added by some other user. Each comment and reply, it contains a thumb icon that is shown to the user to add likes for the comments and replies. Initially, all the icons are in grey will represent that the comments and the replies have not yet been liked by the user. DB: demo, Table: tbl_comment and tbl_like_unlike, File: data.sql.
15g Trello Like Drag and Drop Cards Project management systems like Trello, Mingle have the interactive card-like status-based grouping of projects and tasks. This card-based task grouping is intuitive to use. In this tutorial, let us see how to implement cards with drag and drop using PHP, that can be used in a project management software. DB: demo1, Table: tbl_status and tbl_task, File: data.sql.
16 Ajax Search AJAX search is a functionality that enables real-time search results without the need to reload the entire web page. In this case, the input entered by the user in the search form is displayed dynamically using AJAX. DB: demo, Table: countries, File: countries-table.zip
17 Login A login functionality is a common feature in many applications and websites that requires users to authenticate themselves before accessing certain content or performing specific actions. Users are required to provide their credentials, usually a username and password, to log in and gain access to their personal accounts or exclusive features. DB: demo, Table: users, File: users.sql
18 CRUD Application A CRUD application in PHP enables users to create, read, update, and delete data in a database, providing essential functionality for managing and manipulating data in web applications.. DB: demo, Table: employees, File: employees.sql

Contribution 🛠️

Please create an Issue for any improvements, suggestions or errors in the content.

You can also contact me using Linkedin for any other queries or feedback.

Visitors