// My Tutorial
Watch & Learn
A full series of 10 tutorials.
10 EpisodesHow to Create a Table in HTML | Easy Example
Step-by-step Urdu/Hindi tutorial on how to build a functional information table in HTML using VS Code.
It covers essential table tags and attributes while demonstrating how to integrate various form elements
like text inputs, radio buttons, checkboxes, and even file uploads and images.
Declaration of variable in php
The basics of creating variables in PHP and using them for simple math like addition, subtraction, and multiplication.
You’ll also learn how to run your code using a local server (XAMPP) and display results in a web browser.
How to Link Frontend and Backend in Web Development
Explains the practical steps to link a website's frontend with its backend using HTML and PHP. It demonstrates how to take user input from a form,
send it to a server-side script using the action attribute, and process those values with the $_REQUEST variable to display a dynamic result.
Website Layout for Beginners | Header, Menu Bar & Footer
Detailed walkthrough on creating a consistent website layout using PHP's include function. It teaches how to manage global elements like headers,
menu bars, and footers by keeping them in separate files and dynamically loading them into multiple pages (Home, Programs, and About).
How to pass String from Frontand to Backand
How to pass a string from a frontend HTML form to a backend PHP script. It demonstrates using the form tag's action attribute and the $_REQUEST variable to capture and display user-submitted text dynamically.
You'll learn the full process from creating the input fields to running the code through a local XAMPP server.
Image Upload Tutorial using HTML Form and PHP Backend
How to create an image upload system using an HTML frontend and a PHP backend.
It explains how to set up the form with the correct enctype for file handling and uses the PHP move_uploaded_file function to securely save images into a server folder.
How to connect Database with php | Store image in database
connect a PHP application to a MySQL database to store and retrieve images. It covers creating a database connection,
writing the SQL insert query for image paths, and using a loop to dynamically display those stored images on a webpage.
Using SQL Queries in PHP to Manage Database Records
How to implement a user login and signup system using PHP and a MySQL database. It covers creating the registration form,
securely storing user credentials in the database, and validating login details to grant access to a website.
ATM Machine system using HTML and php
A custom-built ATM Machine system using HTML, PHP, and a MySQL database. It demonstrates the entire workflow,
from user authentication with card numbers and pins to performing cash withdrawals and managing real-time
balance updates using PHP sessions.
Learn Radix Sort: A Non-Comparative Sorting Algorithm
Ever wondered how Radix Sort can sort numbers faster than comparison-based algorithms?
In this video, we break down Radix Sort step by step, with clear examples and visuals
to help you understand this powerful sorting technique.