|
- PHP Select Data From a Database Table
- The SELECT statement is used to select data from a database. Select Data From a Database Table The SELECT statement is used to select data from a database. Syntax SELECT column_name(s) FROM table_name Note: SQL statements are not case sensitive. SEL...
- Author:Time:2008-04-20 13:54:30 Hits:2 Comment:0 View Article...
- PHP MySQL Insert Into Values
- The INSERT INTO statement is used to insert new records into a database table. Insert Data Into a Database Table The INSERT INTO statement is used to add new records to a database table. Syntax INSERT INTO table_name VALUES (value1, value2,....) You...
- Author:Time:2008-04-20 13:53:14 Hits:3 Comment:0 View Article...
- PHP HOW to Create MySQL Database and Tables
- A database holds one or multiple tables. Create a Database The CREATE DATABASE statement is used to create a database in MySQL. Syntax CREATE DATABASE database_name To get PHP to execute the statement above we must use the mysql_query() function. Th...
- Author:Time:2008-04-20 13:51:56 Hits:3 Comment:0 View Article...
- PHP HOW Connect to a MySQL Database
- The free MySQL Database is very often used with PHP. Connecting to a MySQL Database Before you can access and work with data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax...
- Author:Time:2008-04-20 13:50:28 Hits:3 Comment:0 View Article...
- PHP MySQL Database Introduction
- MySQL is the most popular open source database server. What is MySQL? MySQL is a database. A database defines a structure for storing information. In a database, there are tables. Just like HTML tables, database tables contain rows, columns, and cel...
- Author:Time:2008-04-20 13:48:19 Hits:1 Comment:0 View Article...
- PHP Filter
- PHP filters are used to validate and filter data coming from insecure sources, like user input. What is a PHP Filter? A PHP filter is used to validate and filter data coming from insecure sources. To test, validate and filter user input or custom da...
- Author:Time:2008-04-06 20:06:04 Hits:11 Comment:0 View Article...
- PHP Exception Handling
- Exceptions are used to change the normal flow of a script if a specified error occurs What is an Exception With PHP 5 came a new object oriented way of dealing with errors. Exception handling is used to change the normal flow of the code execution i...
- Author:Time:2008-04-06 20:05:24 Hits:14 Comment:0 View Article...
- PHP Error Handling
- The default error handling in PHP is very simple. An error message with filename, line number and a message describing the error is sent to the browser. PHP Error Handling When creating scripts and web applications, error handling is an important pa...
- Author:Time:2008-04-06 20:04:39 Hits:6 Comment:0 View Article...
|
Copyright 2008 The PHPsu
All rights reserved.
This mirror generously provided by: .Hp Inc. ICP:08000822
Last updated: Fri Jun 6 18:18:33 GMT-8 2008