HI, here is some code I was thinking of earlier
Can this work in any way? I do not have an enviroment for testing PHP at the min. So I would appreciate any help
PHP:
<?php
$i=1
$ext[1] = "one";
$ext[2] = "two";
$ext[3] = "three";
$ext[4] = "four";
$ext[5] = "five";
while($i<=5)
{
echo $ext[$i] "\n";
$i++;
}
?>
Can this work in any way? I do not have an enviroment for testing PHP at the min. So I would appreciate any help


















