WhatsApp us

  • How to use sweetalert in website using PHP and MySQL

    • Tech Area
    • June 10, 2024

    In this post, We will discuss how to use javascript sweetalert in website using PHP and MySQL. If you want to show beautiful alert box, then you can achieve this task using javascript sweetalert. Files used in this tutorial: 1- connection.php (database connection file) 2-...

    Read More...

  • How to show and hide password using JavaScript

    • Tech Area
    • June 7, 2024

    In this tutorial, We will learn how to show hide password using JavaScript. We will add the toggle password feature using JavaScript. While filling up a password, and want to see what we have typed till now. To see that, there is a show/hide toggle...

    Read More...

  • How to show-hide password

    • Tech Area
    • June 6, 2024

    In this tutorial, We will learn how to show hide password in html login form. Files used in this tutorial: 1- index.php (login form with show-hide toggle button) This screenshot shows the login form with show-hide toggle button. index.php <html> <head> <title>Login Form</title> <link rel="stylesheet"...

    Read More...

  • Image upload and cropped using jQuery AJAX in PHP

    • Tech Area
    • May 25, 2024

    In this tutorial, We will learn how to upload image and cropped using JQuery AJAX in PHP. Files used in this tutorial: 1- index.php (AJAX script) 2- upload.php (upload image) Below are the step by step process of how to upload image and cropped using...

    Read More...

  • Image upload and preview using jQuery AJAX in PHP

    • Tech Area
    • May 13, 2024

    In this tutorial, We will learn how to upload image and preview using JQuery AJAX in PHP. Files used in this tutorial: 1- index.php (AJAX script) 2- upload.php (upload image) Below are the step by step process of how to upload image and preview using...

    Read More...

  • Leap year program in C Programming

    • Tech Area
    • May 12, 2024

    In this tutorial, We will see how to find leap year in C programming language. Leap year program #include<stdio.h> #include<conio.h> void main() { int y; clrscr(); printf("Enter year "); scanf("%d", &y); if((y%4 == 0 && y%100 != 0) || (y%400 == 0)) { printf("%d is...

    Read More...

  • Convert year into months, weeks and days in C Programming

    • Tech Area
    • May 12, 2024

    In this tutorial, We will see how to convert year into months, weeks and days in C programming language. Program to convert year into months, weeks and days #include<stdio.h> #include<conio.h> void main() { int y, m, w, d; clrscr(); printf("Enter year "); scanf("%d", &y); m...

    Read More...

  • Convert hours into minutes and seconds in C Programming

    • Tech Area
    • May 12, 2024

    In this tutorial, We will see how to convert hours into minutes and seconds in C programming language. Program to convert hours into minutes and seconds #include<stdio.h> #include<conio.h> void main() { int h, m, s; clrscr(); printf("Enter hours "); scanf("%d", &h); m = h *...

    Read More...

  • Check vowel or consonant using if else ladder in C Programming

    • Tech Area
    • May 11, 2024

    In this tutorial, We will see how to check vowel or consonant using if else ladder in C programming language. If else ladder statement allows to execute certain code blocks based on specific conditions.  The syntax of the if else ladder statement is: if (condition 1)...

    Read More...

  • Check vowel or consonant using switch case in C Programming

    • Tech Area
    • May 11, 2024

    In this tutorial, We will see how to check vowel or consonant using switch case in C programming language. The switch expression is evaluated once. Switch statement allows us to execute one code block among many alternatives. The syntax of the switch case is: switch (expression) ​{...

    Read More...

Subscribe us via Email

Join 20,000+ subscriber

Subscribe on YouTube

PHP Projects
Matrimonial Portal Project in PHP & MySQL Last Updated: December 22, 2025
Event Management System Project in PHP & MySQL Last Updated: December 6, 2025
Online Shopping System Project in PHP MySQL Last Updated: November 26, 2025
Hostel management system project in PHP and MySQL Last Updated: February 14, 2024
Online Pizza Delivery project in PHP Last Updated: February 4, 2024
Parking Management System project in PHP Last Updated: November 5, 2023
Visitors Management System project in PHP Last Updated: August 28, 2023
SNIPE – IT Asset management system v6.1.0 Last Updated: April 21, 2023
Employee Management System project in PHP Last Updated: January 21, 2023