]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/Help%2FMoreAboutMechanics
Restore WabiSabi link
[SourceForge/phpwiki.git] / pgsrc / Help%2FMoreAboutMechanics
1 Date: Sun, 16 Nov 2003 02:28:52 +0100
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.5pre)
3 X-Rcs-Id: $Id: Help%2FMoreAboutMechanics,v 1.2 2008-05-26 17:49:20 vargenau Exp $
4 Content-Type: application/x-phpwiki;
5   pagename=Help%2FMoreAboutMechanics;
6   pgsrc_version="2 $Revision: 1.2 $";
7   flags="";
8   markup=2;
9   charset=iso-8859-1
10 Content-Transfer-Encoding: binary
11
12 PhpWiki is written in the server-side scripting language PHP,
13 available from http://www.php.net/. PHP resembles C and Perl in its
14 syntax, and functions much like ASP, ~EmbPerl or JSP.
15
16 PhpWiki consists of a dozen or so files of mixed PHP and HTML. The web
17 pages that make up a WikiWikiWeb based on PHP live in a database with
18 backup copies of previous versions of pages stored as well. (For the
19 database, PhpWiki works with DBM, MySQL, PostgreSQL or text files.)
20
21 Every time a user hits the site, the page requested is pulled from the
22 database and rendered on the fly. The user only really ever requests
23 the file =index.php=, which then decides which other php files to
24 include.
25
26 Links to pages in the Wiki are automatically linked: AddingPages.
27 This might be the single most compelling aspect of a Wiki, the ability
28 to add pages simply by linking to them. The next most compelling thing
29 is how easily external URLs link, like this:
30
31 # http://www.wcsb.org/
32 # ftp://ftp.redhat.com/
33 # news://news.mozilla.org/
34 # http://slashdot.org/
35 # http://theregister.co.uk/
36
37 Combined with one namespace and a simple markup, a Wiki exhibits many
38 of the characteristics of [WabiSabi|Help:WabiSabi].
39
40 PhpWiki is licensed under the GNU General Public license, which you
41 should be able to see here: http://www.gnu.org/copyleft/gpl.txt.
42
43 ----
44 PhpWikiDocumentation CategoryWiki