Learn how to handle MySql
Learn how to make pagination
Learn how to easily create a
This tutorial will teach you
databases in PHP
([1][2][3]) with some lines
comment system. Don't know
how to deal with special
of code, very explained.
what a comment system is?
characters like HTML tags,
Well, it's what you see very
white space etc. from a user
often in a news system.
submitted form and database
Basically it allows your
output.
users to give feedback on
tutorials, news etc. This
tutorial is definitley a
must-see.
Date: Jul, 30 2005 Date: Apr, 15 2006 Date: Nov, 24 2004 Date: Jun, 17 2005 |
After reading this tutorial,
The author writes: Whilst
In PHP every database is
This tutorial is the second
you should be able to add
working on the automatic
accessed slightly
part of our PHP/MYSQL series
previous and next links to
production of web statistics
differently. To connect to
of articles. In this episode
your pages that display data
- came across the following
MySQL, you would use
we show you setting up a
from a database.
problem: "How do I get
mysql_connect(). When you
MYSQL Database through
relational data from an
decide to upgrade to Oracle
phpmyadmin and create a PHP
Hierarchical
or Microsoft SQL Server, you
Script to make tables for
structure?" It didn't
would use ocilogon() or
the MYSQL database and more.
take long to realize - I'd
mssql_connect()
have to use PHP to talk to
respectively. What is worse
LDAP, pull off records &
is that the parameters you
upload into a series of
use for the different
tables, using the cn as
connect functions are
primary key. Which then
different also.. That's why
could be queried
a database wrapper library
relationally. Pulling off
such as ADODB comes in handy
large, queries and
when you need to ensure
repeatedly transcending LDAP
portability.
trees is pretty slow - so I
<p>
This
built my LDAP to SQL engine,
tutorial has been translated
by flattening dns into table
into multiple languages,
names. Then used PHP scripts
including German, Spanish,
to query & produce daily
Polish, Thai and Chinese.
snap shots.
Date: Apr, 19 2005 Date: May, 03 2006 Date: Sep, 05 2003 Date: Jan, 04 2006 |