Hi Dear's, This is a secure login with cryptography class. This is created using visual studio 2017. Used database is encryption so safe and have register login page.
This is the simple calendar. Also includes an agenda for recording daily events. It's written in Visual Studio CSharp 2017. I hope you will be useful and learn something from it.
This is the simple and cool calculator, with nice glassbuttons. Besides the basic operations, it has also implemented the power up and extraction of the square root. Also the glass buttons are implemented as well usercontrol and can be used in other applications. Enjoy it and hope to be helpful.
This tutorial tackles how to create CRUD Operation using AJAX/jQuery in PHP/MySQLi OOP(Object-oriented Programming).CRUD stands for Create, Read, Update and Delete which is also the same as add, edit, delete and show MySQL table data.
This tutorial tackles how to create CRUD Operation in PHP using MySQLi OOP(Object-oriented Programming).CRUD stands for Create, Read, Update and Delete which is also the same as add, edit, delete and show MySQL table data.
This is a very simple calculator that allows you to calculate addition, subtraction, multiplication, and division. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If (TextBox1.Text = " ") Then MessageBox.Show("enter value in num1") End If If (TextBox2.Text = " ") Then MessageBox.Show("enter value in num2") Else TextBox3
NOTE: Create a MySQL database named crud then import this code using phpMyAdmin: CREATE TABLE tbcrud1( id INT AUTO_INCREMENT NOT NULL PRIMARY KEY, NAME VARCHAR(20) NOT NULL, AGE INT NOT NULL);