thats a building a variable to display the values of your varaibles
its the equivalent of
$out .="name=".$name; //add the $name to the displa\y variable $out
$out .=" POST =".$_post['name'] //add the value from the $POST_ global variable 'name'
$out .="\n"; //add a form feed to $out
//repeat for the other 3 variables
die (echo $out); //then stop execution of the script and display the value of $out on the screen
whilst you are at it make certain that you switch on full error reporting
error_reporting(E_All & E_STRICT)
I can't remmebr if its | or & to doo a bitwise add.. check da manuel (
PHP: Hypertext Preprocessor) for details