PHP
This web page has information on PHP Hypertext PreProcessor. It's a
server side web scripting language. The web page requested will be passed
to the PHP processing engine by the web server for processing. The PHP
processing engine will then send web content back to the web server to be sent
to the clients browser.
Very slim info. I'm a novice.
Resources
My Examples
- JSP Hello World -
using PHP to process a simple JSP style page using <% java code %>
tags.
Example Code:
<html><body>
<% if ( true ) { %>
Hello World - true.
<% } else { %>
Hello World - false.
<% } %>
</body></html>
- PHP Environment -
using PHP to display information about the server environment.
Example Code:
<html><body>
<?php
phpinfo();
?>
</html></body>