mirror of
https://github.com/php/web-php.git
synced 2026-03-31 19:52:29 +02:00
13 lines
355 B
PHP
13 lines
355 B
PHP
<?php require("header.inc"); ?>
|
|
|
|
<h1>CGI vs. Server Module</h1>
|
|
<ul>
|
|
<li>CGI has per-request process startup overhead
|
|
<li>Server modules provides process-persistent resources
|
|
<li>CGI programs can not handle HTTP authentication
|
|
<li>Apache module the most common form of PHP
|
|
<li>No difference in amount of parsed code
|
|
</ul>
|
|
|
|
<?php require("footer.inc"); ?>
|