Tutorials by tizag.com

You can find here all the 101 tutorials by tizag.com. The author's home page URL is http://www.tizag.com.
Sort byTutorials Per Page
Pages:1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next| Last

File Truncate

Author: tizag.com  Rating:
As we have mentioned before, when you open a file for writing with the paramater 'w' it completely wipes all data from that file. This action is also referred to as "truncating" a file. Truncate literally means to shorten.
January 28, 2010 Today Views: 1 Total Views: 806

File Append

Author: tizag.com  Rating:
If you want to append to a file, that is, add on to the existing data, then you need to open the file in append mode.
January 27, 2010 Today Views: 1 Total Views: 800

File Read

Author: tizag.com  Rating:
In this lesson we will teach you how to read data from a file using various PHP functions.
January 27, 2010 Today Views: 1 Total Views: 878

SQL - Queries

Author: tizag.com  Rating:
Queries are the backbone of SQL. Query is a loose term that refers to a widely available set of SQL commands called clauses.
January 26, 2010 Today Views: 1 Total Views: 1,284

SQL - Delete

Author: tizag.com  Rating:
Entire rows can be deleted from a table using the delete clause.
January 26, 2010 Today Views: 3 Total Views: 1,203

File Delete

Author: tizag.com  Rating:
You know how to create a file. You know how to open a file in an assortment of different ways. You even know how to read and write data from a file!
January 8, 2010 Today Views: 1 Total Views: 1,028
The str_replace function is similar to a word processor's "Replace All" command that lets you specify a word and what to replace it with, then replaces every occurrence of that word in the document.
January 7, 2010 Today Views: 3 Total Views: 2,299

SQL - Distinct Usage

Author: tizag.com  Rating:
Distinct is used to retrieve rows of your database that have unique values for a given column.
January 7, 2010 Today Views: 2 Total Views: 1,757

MySQL Syntax

Author: tizag.com  Rating:
The great thing about everything you do in MySQL is that the "code" is very easy for humans to read, as opposed to harder programming languages like C or C++. Very few special characters and symbols are required to create a MySQL query, and most queries consist entirely of English words!
January 6, 2010 Today Views: 1 Total Views: 1,060

SQL - Predicates

Author: tizag.com  Rating:
Predicates follow the where clause. Predicates allow the searching through database records to recover specific strings and ranges or characters. Rows will be returned if they match the predicate condition.
January 5, 2010 Today Views: 3 Total Views: 2,584
Pages:1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next| Last