PHPsu新闻
MANUAL ZH  |  EN
     


PHP Database ODBC
ODBC is an Application Programming Interface (API) that allows you to connect to a data source (e.g. an MS Access database). Create an ODBC Connection With an ODBC connection, you can connect to any database, on any computer in your network, as long...
Author:Time:2008-04-25 12:12:34 Hits:8 Comment:0 View Article...
PHP MySQL Delete From
The DELETE FROM statement is used to delete rows from a database table. Delete Data In a Database The DELETE FROM statement is used to delete records from a database table. Syntax DELETE FROM table_name WHERE column_name = some_value Note: SQL state...
Author:Time:2008-04-25 12:11:53 Hits:13 Comment:0 View Article...
PHP MySQL Update
The UPDATE statement is used to modify data in a database table. Update Data In a Database The UPDATE statement is used to modify data in a database table. Syntax UPDATE table_name SET column_name = new_value WHERE column_name = some_value Note: SQL...
Author:Time:2008-04-25 12:11:05 Hits:10 Comment:0 View Article...
PHP for Beginners by a Beginner: Simple Login, Logout, and Session Handling
able: users Column Name Type Null Primary Key Extra user_id int(8) No PK AUTO username varchar(11) No password varchar(32) No Once we have the table created, now we need to populate it with some user information. INSERT INTO users (username, password...
Author:Time:2008-04-21 13:49:19 Hits:11 Comment:0 View Article...
PHP Debugger
Every program no matter how well written can have bugs or other defects. Using a PHP Debugger will help find and eliminate unwanted software bugs from your PHP programs. Using a PHP Debugger to Debug a PHP Script For the beginner PHP developer, PHP...
Author:Time:2008-04-20 14:41:48 Hits:2 Comment:0 View Article...
Tutorial: Writing Classes in PHP
Part 1 :: Introduction Part 2 :: Class Structures Part 3 :: Using the Class Download complete script Requirements: PHP4, register_globals are assumed to be off. Introduction Some consider classes one of the hardest components of PHP to figure out, b...
Author:Time:2008-04-20 14:39:47 Hits:2 Comment:0 View Article...
MYSQL The ORDER BY Keyword
The ORDER BY keyword is used to sort the data in a recordset. The ORDER BY Keyword The ORDER BY keyword is used to sort the data in a recordset. Syntax SELECT column_name(s) FROM table_name ORDER BY column_name Note: SQL statements are not case sens...
Author:Time:2008-04-20 13:58:20 Hits:3 Comment:0 View Article...
MySQL The Where Clause
To select only data that matches a specified criteria, add a WHERE clause to the SELECT statement. The WHERE clause To select only data that matches a specific criteria, add a WHERE clause to the SELECT statement. Syntax SELECT column FROM table WHE...
Author:Time:2008-04-20 13:55:50 Hits:3 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