|
|
PHP (angielski akronim rekurencyjny, którego rozwinięcie to PHP Hypertext Preprocessor), pierwotnie nazwany Personal
Home Page - skryptowy język programowania, służący przede wszystkim do tworzenia dynamicznych stron WWW i wykonywany w
tym przypadku po stronie serwera, z możliwością zagnieżdżania w HTML (bądź XHTML). PHP jest podobny w założeniach do
dużo starszego mechanizmu SSI (Server Side Includes), jednak jest w stosunku do SSI nieporównanie bardziej rozbudowany.
Udostępniany jest na zasadach licencji open-source. Jego składnia bazuje na językach C, Java i Perl.
SQL (ang. Structured Query Language) to strukturalny język zapytań używany do tworzenia, modyfikowania baz danych oraz
do umieszczania i pobierania danych z baz danych.
Język SQL jest językiem deklaratywnym. Decyzję o sposobie przechowywania i pobrania danych pozostawia się systemowi
zarządzania bazą danych DBMS.
Jest to język programowania opracowany w latach siedemdziesiątych w firmie IBM. Stał się on standardem w komunikacji z
serwerami relacyjnych baz danych. Wiele współczesnych systemów relacyjnych baz danych używa do komunikacji z
użytkownikiem SQL, dlatego mówi się, że korzystanie z relacyjnych baz danych, to korzystanie z SQL-a.
Apache jest otwartym serwerem HTTP dostępnym dla wielu systemów operacyjnych (m.in. UNIX, GNU/Linux, BSD,
Microsoft Windows). Po angielsku słowo Apache wymawia się epaczi, co brzmi tak samo jak a patchy (server), co było
określeniem tego serwera we wczesnym stadium jego rozwoju w 1995 roku, kiedy był on głównie zbiorem poprawek (patch)
nałożonych na serwer HTTP o nazwie NCSA.
Apache jest najszerzej stosowanym serwerem HTTP w Internecie. W maju 2003 jego udział wśród serwerów wynosił 62%. W
połączeniu z interpreterem języka skryptowego PHP i bazą danych MySQL, Apache stanowi jedno z najczęściej spotykanych
środowisk w firmach oferujących miejsce na serwerach sieciowych.
|
phpcredits
(PHP 4, PHP 5) phpcredits -- Prints out the credits for
PHP
Descriptionbool phpcredits (
[int flag] )
This function prints out the credits listing the PHP
developers, modules, etc. It generates the appropriate HTML
codes to insert the information in a page. flag is optional, and it defaults to
CREDITS_ALL. To generate a
custom credits page, you may want to use the flag parameter. For example to print the
general credits, you will use somewhere in your code:
And if you want to print the core developers and the
documentation group, in a page of its own, you will use:
And if you feel like embedding all the credits in your page,
then code like the one below will do it:
Tabela 1. Pre-defined phpcredits() flags
| name |
description |
| CREDITS_ALL |
All the credits, equivalent to using: CREDITS_DOCS
+ CREDITS_GENERAL + CREDITS_GROUP + CREDITS_MODULES +
CREDITS_FULLPAGE. It generates a complete stand-alone
HTML page with the appropriate tags. |
| CREDITS_DOCS |
The credits for the documentation team |
| CREDITS_FULLPAGE |
Usually used in combination with the other flags.
Indicates that a complete stand-alone HTML page needs
to be printed including the information indicated by
the other flags. |
| CREDITS_GENERAL |
General credits: Language design and concept, PHP
4.0 authors and SAPI module. |
| CREDITS_GROUP |
A list of the core developers |
| CREDITS_MODULES |
A list of the extension modules for PHP, and their
authors |
| CREDITS_SAPI |
A list of the server API modules for PHP, and their
authors |
See also phpinfo(), phpversion() and php_logo_guid().
|