June 06, 2025
Trending Now
  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

  •    Build Your First Responsive Login Form Using H...

  •    Java Beans...

  •    Java String Methods...

Click Here to Buy Our Courses

  • Home
  • About Us
  • Java
    • Java for Beginners
    • Java Projects
    • Java Console Application Projects
  • C#.net
  • Angular
  • Reactjs
    • ReactJS Introduction
  • Node JS
  • Android Studio
  • Jsp
  • Servlet
  • python
    • Python for beginners
  • Spring boot
  • Laravel 8
  • Laravel 9
  • Asp.net MVC
  • php
  • Flutter
  • Free Projects
  • Contact us
  • Privacy Policy

Star Rating System in jQuery PHP MYSQL

By admin
August 21, 2020
in :  php
0
7,507

This tutorial will teach you how to make Star Rating System in jQuery PHP MYSQL. The rating management system is made to rate an individual’s skillset accordingly. Database connection db_connection.php <?php $servername = "localhost";//Server Name $username = "root";//Server User Name $password = "";//Server Password $dbname = "billdb";//Database Name //Create DB Connection $conn = mysqli_connect($servername,$username,$password,$dbname); ?>   add_rate.php <html> <head> <link …

Read More

Search using python tkinter mysql

By admin
August 20, 2020
in :  python
0
3,767

This tutorial will teach you how to search using python Gui application connect with mysql. from tkinter import * import mysql.connector def Ok(): global myresult studname = e1.get() coursename = e2.get() fee = e3.get() mysqldb=mysql.connector.connect(host="localhost",user="root",password="",database="smschool") mycursor=mysqldb.cursor() try: mycursor.execute("SELECT * FROM record where id = '" + studname + "'") myresult = mycursor.fetchall() for x in myresult: print(x) e2.delete(0, END) e2.insert(END, …

Read More

Insert Records using Python tkinter mysql

By admin
August 19, 2020
in :  python
0
3,723

This tutorial will teach you how Insert  the Records using Python and mysql. Establish the database connection.   from tkinter import * from tkinter import messagebox import mysql.connector def Ok(): studname = e1.get() coursename = e2.get() feee = e3.get() mysqldb=mysql.connector.connect(host="localhost",user="root",password="",database="smschool") mycursor=mysqldb.cursor() try: sql = "INSERT INTO record (id,stname,course,fee) VALUES (%s, %s, %s, %s)" val = ("",studname,coursename,feee) mycursor.execute(sql, val) mysqldb.commit() messagebox.showinfo("information", …

Read More

Fish inventory system using python tkinter

By admin
August 18, 2020
in :  python
0
936

This tutorial will teach you  to make a small Fish shop Inventory  system using python. The following  system will use to manage the Fish shop. import tkinter as tk OptionList = [ "kg", "gm", ] def Ok(): item = variable.get() result = float(e1.get()) if item == "kg": tot = result * 120 else : tot = result/1000 * 120 nsalText.set(tot) …

Read More

Employee Salary Calculation System python tkinter

By admin
August 14, 2020
in :  python
0
3,052

This tutorial will teach you  to calculating the employee salary using python projects GUI.Input the employee name and the basic salary calculate and display the netsalary using following condition.

Read More

Student Marks Calculation Using python tkinter

By admin
August 14, 2020
in :  python
0
2,547

This tutorial will teach you Student Marks Calculation System Using python tkinter is used to create a graphical user interface in python.In order to calculating the grade using following conditions.if you are interested to learn python tkinter tutorial this is the right place where you learn. Input student marks to calculating the total,grade. the grade is awared as “Pass” when …

Read More

How to make the Calculator in python

By admin
August 14, 2020
in :  python
0
793

This tutorial will teach you how to make the simple calculator in python programming.This programming will be able add,subtract,multiply,divide two numbers. from tkinter import * def Add(): result = int(e1.get()) + int(e2.get()) resultText.set(result) def Min(): result = int(e1.get()) - int(e2.get()) resultText.set(result) def Sub(): result = int(e1.get()) * int(e2.get()) resultText.set(result) def Div(): result = int(e1.get()) / int(e2.get()) resultText.set(result) root = Tk() …

Read More

JSP Login Validation step by step

By admin
August 13, 2020
in :  Jsp
0
1,933

This tutorial will teach you how to make JSP Login Validation step by step.

Read More

Employee Salary Calculation using python

By admin
August 13, 2020
in :  python
0
1,057

This tutorial will teach you  to calculating the employee salary calculation using python .python projects easy for developing.This type of python projects is so imponent those who want to be good python developer. this is the right where you learn python projects examples.

Read More

Student Marks Calculation System Using python

By admin
August 13, 2020
in :  python
0
780

This tutorial will teach you Student Marks Calculation System Using python console application.in order to calculate the grade using following condition Input student marks to calculating the total,grade. the grade is awared as “Pass” when the average is more than 50.otherwise grade is fail. marks1 = int(input("Enter Your Marks 1 ")) marks2 = int(input("Enter Your Marks 2 ")) marks3 = …

Read More
1...434445...49Page 44 of 49

Recent Posts

  • ChatGPT Free Online Download the ChatGPT App Easily
  • Free GPT Chat? DeepSeek AI Does It Better
  • Spring Boot MySQL Complete CRUD REST API [ Free Sourecode ]
  • CREATE a Responsive Navigation Bar with FlexBox CSS!
  • Registration with image upload Java Jdbc(Download Source code)

© Copyright 2020, All Rights Reserved Powered by Tutussfunny