PHP With Forms PHP Tutorial Introduction
In the last part, I showed you how to use PHP to send e-mail messages using a script. In this part I will continue this and also show you how to use PHP and forms together to make your PHP scripts useful.
Posted : Sep/24/2009 By:
pankaj Category:
MySQL Total Views :
76 Vote Up:
0 Vote Down:
0 Deleting Data by Using SQL DELETE Statement To remove a data row or all rows from a table you can use SQL DELETE statement. The syntax of SQL DELETE statement in MySQL is as follows:
DELETE [LOW_PRIORITY] [QUICK] FROM table_name
[WHERE conditions]
[ORDER BY
Posted : Sep/24/2009 By:
nikhil Category:
MySQL Total Views :
81 Vote Up:
1 Vote Down:
0 Inserting Data into Table In this tutorial, you will learn how to insert data into database tables by using SQL INSERT statement.
INSERT Statement
INSERT statement allows you to insert one or more rows to the table. In MySQL, the INSERT statem
Posted : Sep/24/2009 By:
nikhil Category:
MySQL Total Views :
65 Vote Up:
0 Vote Down:
0 Learning Advanced Query In the previous tutorial, you've learn how to retrieve data from one table by using SELECT statement. But in the real database programming task, you usually does not select data from just one table because of the normali
Posted : Sep/24/2009 By:
nikhil Category:
MySQL Total Views :
66 Vote Up:
0 Vote Down:
0 SQL LIKE Operator in MySQL SQL LIKE allows you to perform pattern matching in your characters column in a database table. SQL LIKE is often used with SELECT statement in WHERE clause. MySQL provides you two wildcard characters for use with LIKE, th
Posted : Sep/24/2009 By:
nikhil Category:
MySQL Total Views :
75 Vote Up:
0 Vote Down:
0