PHP Project

Address Book System A minor project in PHP.Databsae: PHPMyAdmin, Wamp Server Code for Insert data into Database: <html><body><form><table align=”center”><tr><td>Name:</td><td><input type=”text” name=”name”></td></tr><tr><td>Mobile:</td><td><input type=”text” name=”mobile”></td></tr><tr><td>Gender:</td><td><input type=”radio” value=”Female” … Read more

Select statement in SQL

Different ways to use ‘select’ statement in SQL, DBMS MySQL. mysql> select *from student where roll_no<45 span=””>+——–+——–+———+| f_name | s_name | roll_no |+——–+——–+———+| prasan | … Read more

LIKE IN SQL mySQL

There are different ways to use ‘like’ in SQL. Each way of using ‘like’ gives a different result. Which is shown in screenshot below. ‘Like’ … Read more

SQL in MySQL

SQL in MySQL 1. Firstly we have to start MySQL 5.5 Command line client then we need to enter password, created during installation. After entering password, screen … Read more