test.php
author viric@llimona
Thu, 11 May 2006 00:00:15 +0200
changeset 2 eb656142f039
parent 0 e269d7e3f581
permissions -rw-r--r--
Updating to the development version done in vicerveza.

<?
	function test($num)
	{
		for ($i=0; $i < $num; $i++)
			$array[$i+10] = chr(32+$i);
		return $array;
	}

	$a = test(50);
	reset($a);

	while(list($key,$val) = each($a))
	{
		echo "Element ". $key ." és \"" . $val . "\". <br>";
	}
?>