<?php
/*
* Created on 8 nov. 2005
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
echo "<pre>";
//print_r($_SERVER);
$array = array("eins","zwei","grĂ¼n");
for ($index = 0; $index < sizeof($array); $index++) {
echo $array[$index];
?>
<br>
<?php } ?>