|
A continuation of the series,
When interacting with a
As your website grows you may
In this two-page online
"Data Integrity Using
database, functions are
run into two problems: Your
tutorial you will learn how
MySQL and PHP," this
called that are common to
website has so much
to create a database-driven
article discusses the
every transaction; functions
information that visitors
site that can display
concept of auto_increment
to establish a connection,
can't quickly find what they
content on request. It
fields in MySQL, to cause
execute the query and then
want and visitors want to
covers topics on a simple
MySQL to store a unique,
close the connection. This
give you information. Both
SQL query interface and more
incrementing integer in the
article shows how to create
of these problems can be
complex example of parsing
field of each new row.
functions that will
solved by building a
and querying.
eliminate this redundancy.
database on a website. This
The tutorial uses MySQL as
introductory article shows
the database, but the
you how to do this using
database layer is
basic PHP-MySQL interaction.
irrelevant. These functions
can be adapted to use other
databases.
Date: Dec, 06 2000 Date: Jul, 17 2000 Date: Jan, 18 2000 Date: Dec, 14 1999 |
|
This tutorial might seem
This tutorial will teach you
The usage of databases in
This is a short tutorial on
pretty simple and obvious
how to deal with special
larger web-based
how to program in PHP and
for many advanced
characters like HTML tags,
applications is essential.
MySQL. Covers several MySQL
webmasters, but some
white space etc. from a user
By using basic
functions via telnet
beginners might have some
submitted form and database
object-orientated techniques
command, and a short example
problems. And since I
output.
we can minimize the fuss of
on using PHP with MySQL.
remember I was a bit stuck
connecting and interacting
on this years ago too, why
with a database. We can also
not make things clear for
reuse this code in other
anyone?
When do we need
applications: a huge benefit
to do this? Everytime we
of 'OO' programming.
install a forum or a CMS
that requires an empty
database being already
created for the install
process.
Date: Oct, 03 2006 Date: Jun, 17 2005 Date: Apr, 29 2003 Date: Jul, 23 2001 |