[main] [misc] [graphics] [page design] [site design] [xhtml] [css] [xml] [xsl] [schema] [javascript] [php] [mysql]

HVCC Home
Blackboard HVCC
Blackboard Manual
Faculty Association

php main
1. what is php
2. http basics
3. php basics
4. php expressions
* 5. php client side
a. writing php content
b. php global arrays
c. php form data
d. writing the url
6. php flow control
7. php manual


print version

Note that all external links will open up in a separate window.

This is a stripped down version of these pages for older browsers. These pages are really meant to be viewed in a standards compliant browser.

Directions for surfing with audio.

Client Interaction

These tutorials are about PHP and its use for server-side Web programming.

This tutorial has four (4) sub-sections.

Reading and writing from the network

PHP is capable of working with many data sources, but in order to get immediate feeback, the best place to start is with its interaction with the Web server itself and the Web documents it prepares for and recieves back from transmission with the client. In other words th ebest place to start is with writing documents straight to the browser and reading information back from the browser.

This section looks at the following topics:

  • Writing information out to Web pages for immediate transmission to the client.
  • Reading forms and other data sent back from the client.
  • The global arrays that store the system and environmental variables and how to use them in short form and long form.
  • Some important information on encoding special characters in URLs.

[top]