» Download CSWS_PHP Version
2.1 for OpenVMS Alpha and Integrity servers (August
2009)
» Download CSWS_PHP Version
2.0 for OpenVMS Alpha and Integrity servers (May
2009)
» Download CSWS_PHP Version
1.3 for OpenVMS Alpha and Integrity servers (November 2005)
» Download
Version 1.3 ECO 2 Patch Kit (April
2008)
» Download CSWS_PHP V 2.1 Source Code
(August 2009)
» Download CSWS_PHP V 1.3 Source Code
HP is pleased to announce a new customer release version of
CSWS_PHP. CSWS_PHP Version 2.1 that runs with
HP Secure Web Server Versions 1.3-1 and 2.1 and higher for OpenVMS Alpha and
Integrity servers. It does not work with SWS Version 2.0.
CSWS_PHP Version 2.1 is based on
PHP 5.2.6.
(CSWS_PHP Version 2.0 is based on PHP
5.2.6 and CSWS_PHP V1.3 is based on
PHP
4.3.10)
CSWS_PHP Version 2.0 is based on
PHP 5.2.6.
(CSWS_PHP V1.3 is based on
PHP
4.3.10)
See the CSWS_PHP for OpenVMS Alpha Installation Guide
and Release Notes for Version 2.1 for information about how to download, install, and run the CSWS_PHP
Version 2.1 kit.
See the CSWS_PHP for OpenVMS Alpha Installation Guide
and Release Notes for Version 2.0 for information about how to download, install, and run the CSWS_PHP
Version 2.0 kit.
See the CSWS_PHP for OpenVMS Alpha Installation Guide
and Release Notes for Version 1.3 for information about how to download, install, and run the CSWS_PHP
Version 1.3 kit.
PHP is a server-side, cross-platform, HTML embedded
scripting language that lets you create dynamic web pages.
PHP-enabled web pages are treated the same as regular HTML pages,
and you can create and edit them the way you normally create
regular HTML pages.
PHP-enabled files are simple HTML files ending in .PHP (the default extension).
The .PHP files you create and include in your web directory are
parsed by CSWS_PHP in the Secure Web Server. You do not need
to compile the files.
For example, the following simple program, called hello.php,
creates a static page, which means its display always remains the same.
Note that PHP tags begin with <?php and end with
?>.
<html><head><title>PHP Test</title></head>
<body>
<?php echo "Hello World<p>"; ?>
</body></html>
The "Hello, World" example does not require you
to use PHP. However, to display a greeting in French or Spanish,
you could allow the user to choose either "Bonjour, World",
or "Hola, World".
If you replace the third line in the previous example with the following line, the user can decide how to greet the world:
<?php print $greeting, ", "; ?> World
In this example, $greeting is assigned
a value that is sent to the browser.
See http://www.php.net/ for more information
about PHP.
|