Learn how to make pagination
Learn how to handle MySql
Learn how to easily create a
This tutorial will teach you
([1][2][3]) with some lines
databases in PHP
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: Apr, 15 2006 Date: Jul, 30 2005 Date: Nov, 24 2004 Date: Jun, 17 2005 |
After reading this tutorial,
The author writes: Whilst
In PHP every database is
In some content management
you should be able to add
working on the automatic
accessed slightly
scripts case one needs to
previous and next links to
production of web statistics
differently. To connect to
create a database and also
your pages that display data
- came across the following
MySQL, you would use
populate it (insert the
from a database.
problem: "How do I get
mysql_connect(). When you
tables from the example .sql
relational data from an
decide to upgrade to Oracle
file). It's the case of
Hierarchical
or Microsoft SQL Server, you
PhpNuke for example.
You
structure?" It didn't
would use ocilogon() or
will learn here to create a
take long to realize - I'd
mssql_connect()
new database in phpmyadmin
have to use PHP to talk to
respectively. What is worse
and also insert the needed
LDAP, pull off records &
is that the parameters you
information. There are some
upload into a series of
use for the different
images too, to help you
tables, using the cn as
connect functions are
grasp the info easier.
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: Aug, 22 2006 |