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 some content management
In PHP every database is
you should be able to add
working on the automatic
scripts case one needs to
accessed slightly
previous and next links to
production of web statistics
create a database and also
differently. To connect to
your pages that display data
- came across the following
populate it (insert the
MySQL, you would use
from a database.
problem: "How do I get
tables from the example .sql
mysql_connect(). When you
relational data from an
file). It's the case of
decide to upgrade to Oracle
Hierarchical
PhpNuke for example.
You
or Microsoft SQL Server, you
structure?" It didn't
will learn here to create a
would use ocilogon() or
take long to realize - I'd
new database in phpmyadmin
mssql_connect()
have to use PHP to talk to
and also insert the needed
respectively. What is worse
LDAP, pull off records &
information. There are some
is that the parameters you
upload into a series of
images too, to help you
use for the different
tables, using the cn as
grasp the info easier.
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: Aug, 22 2006 Date: Sep, 05 2003 |