install/intro.xml
cf9fc93681ad1bd5dfaaf61282a0463c2531f7d5
...
...
@@ -4,14 +4,13 @@
4
4
<title>General Installation Considerations</title>
5
5
<para>
6
6
Before starting the installation, first you need to know what do you
7
-
want to use PHP for. There are three main fields you
7
+
want to use PHP for. There are two main fields you
8
8
can use PHP, as described in the
9
9
<link linkend="intro-whatcando">What can PHP do?</link>
10
10
section:
11
11
<itemizedlist>
12
12
<listitem><simpara>Websites and web applications (server-side scripting)</simpara></listitem>
13
13
<listitem><simpara>Command line scripting</simpara></listitem>
14
-
<listitem><simpara>Desktop (GUI) applications</simpara></listitem>
15
14
</itemizedlist>
16
15
</para>
17
16
<para>
...
...
@@ -19,7 +18,7 @@
19
18
PHP itself, a web server and a web browser. You
20
19
probably already have a web browser, and depending on
21
20
your operating system setup, you may also have a web
22
-
server (e.g. Apache on Linux and MacOS X; IIS on Windows).
21
+
server (e.g. Apache on Linux and macOS; IIS on Windows).
23
22
You may also rent webspace at a company. This way, you
24
23
don't need to set up anything on your own, only write
25
24
your PHP scripts, upload it to the server you rent, and
...
...
@@ -31,16 +30,15 @@
31
30
server. For many servers PHP has a direct module
32
31
interface (also called SAPI). These servers include
33
32
Apache, Microsoft Internet Information Server,
34
-
Netscape and iPlanet servers. Many other servers
35
-
have support for ISAPI, the Microsoft module
36
-
interface (OmniHTTPd for example). If PHP has no
33
+
Netscape and iPlanet servers.
34
+
If PHP has no
37
35
module support for your web server, you can always
38
36
use it as a CGI or FastCGI processor. This means you set up
39
37
your server to use the CGI executable of
40
38
PHP to process all PHP file requests on the server.
41
39
</para>
42
40
<para>
43
-
If you are also interested to use PHP for command line
41
+
If you are also interested in using PHP for command line
44
42
scripting (e.g. write scripts autogenerating some images
45
43
for you offline, or processing text files depending
46
44
on some arguments you pass to them), you always need
...
...
@@ -49,16 +47,6 @@
49
47
command line PHP applications</link>. In this case,
50
48
you need no server and no browser.
51
49
</para>
52
-
<para>
53
-
With PHP you can also write desktop GUI applications
54
-
using the PHP-GTK extension. This is a completely
55
-
different approach than writing web pages, as you
56
-
do not output any HTML, but manage windows and objects
57
-
within them. For more information about PHP-GTK, please
58
-
<link xlink:href="&url.php.gtk;">visit the site dedicated to
59
-
this extension</link>. PHP-GTK is not included in the
60
-
official PHP distribution.
61
-
</para>
62
50
<para>
63
51
From now on, this section deals with setting up PHP
64
52
for web servers on Unix and Windows with server module
...
...
@@ -70,9 +58,6 @@
70
58
PHP source code and binary distributions for Windows can be
71
59
found at
72
60
<link xlink:href="&url.php.downloads;">&url.php.downloads;</link>.
73
-
We recommend you to choose a
74
-
<link xlink:href="&url.mirrors;">mirror</link> nearest
75
-
to you for downloading the distributions.
76
61
</para>
77
62
</chapter>
78
63

79
64