Learn how to execute your PHP
A short article on a fresh
On PHP DevCenter, Adam
Tutorial that explains how to
scripts using CRON by set
look at templating, the
Trachtenberg and Joao Prado
allow your website visitors
time intervals that you
correct way. Forget Smarty,
Maia have described
to select different CSS
choose. Very valuable for
forget Savant, this is how
interesting ways to localize
style sheets (or themes)
running routine tasks that
you do it!
web sites with PHP. In this
were written into a PHP
article I've offered another
Script.
alternative, which should be
easy for non-programmers to
use. We will take advantage
of the user function
setstring function.
Date: Aug, 14 2002 Date: Mar, 14 2006 Date: Dec, 23 2002 Date: Jan, 05 2006 |
In this tutorial, you'll
If you need the data of an
The full URL to a page comes
Just short code snippets on
learn how to make a script
array displayed in 2 rows.
in three parts: The domain
alternating colors for rows
that changes the layout of
Then this code snippet is
name, the path to the file
and columns. Remove NOSPAM
your site according to the
just for you. You can change
then the filename, and the
to email me
users preference. They can
to 3 or more rows easy.
query string. For example,
choose how they want to view
take the URL
your site.
http://www.example.com/ex
ample/page.php?name=Bob:
1.
The domain name:
www.example.com; 2. The
path to the page:
/example/page.php; 3. The
query string: name=Bob
So
how do you find it all out
in your own PHP
scripts?
This guide will
tell you how access each of
these elements by using the
$_SERVER superglobal array
which is available at all
times within your PHP
scripts.
Date: Feb, 03 2006 Date: Aug, 19 2002 Date: Dec, 10 2006 Date: Apr, 08 2002 |