Metatags are a way for you to
This is a simple tutorial
Modern web-applications often
JavaScript is mainly used as
define your web page and web
that shows you how to make
provide (during
a client side scripting
site to the outside world.
information or images(in
registration, or
language, while PHP is a
You can declare the title,
this case buttons) display
password-reset)
server side technology.
keywords and description,
in a specific number columns
random-generated passwords
Unlike Java or ASP.Net, PHP
which help your placement in
per row when extracted from
for its users. However these
doesn't have tools to make
search engines. In addition,
a mySQL database using a
passwords (usually a random
it work client side. That is
you can specify who owns the
query, using a specific
combination of letters or
why you need to combine
copyright, how often the
algorithem and loop.
numbers) are quite hard to
JavaScript and PHP scripts
page is to be visited by
remember: in fact, it's even
to develop powerful
search engines and many
impossible to read them.
web-applications.
other useful pieces of
This article provides a
information.
function for generating
English-like readable
passwords.
Date: Jun, 11 2006 Date: Nov, 30 2006 Date: Dec, 24 2006 Date: Sep, 28 2006 |
This demo shows how to use
Shows you how to split all
Apache's .htaccess allows a
Did you know that require()
the regular expression
characters from a
wide range of useful web
and include() work
support in PHP. These
string.
Example: String =
server behaviours to be
differently? Both are used
functions allow you to
"blah"; echo
implemented, the most
for including code in
perform regular expression
this:
b
l
a
h
popular of which are
another file into your
operations on strings. The
provision of custom error
program, but there is a
regular expression language
pages, and password
crucial difference in how
used is compatible with the
protection of directories.
they operate when that file
extended regular expression
This tutorial gives a brief
cannot be read which any PHP
syntax as specified in the
lesson in how to implement
programmer needs to know
egrep man page on most Unix
these two useful types of
about. There's also a slight
systems.
service.
difference with require()
between new and older
versions of PHP which this
tutorial discusses too.
Date: Dec, 26 1999 Date: Oct, 08 2004 Date: Sep, 29 2005 Date: Dec, 10 2006 |