well... finally I rigged up a counter to combine 2 numerals together.... however... we have a problem completely different.
Is there anyway to make an associative array into a listed array? We have created an array via readdir()
while ($file = readdir($dir))
{
if ($file != "." && $file != "..")
{
$arra=array($file);
the problem is, this array is associative... but we need to use integers to progress thru it for other reasons... any ideas?