Re: solved [message #185728 is a reply to message #185727] |
Mon, 05 May 2014 10:11 |
Ben Bacarisse
Messages: 82 Registered: November 2013
Karma:
|
Member |
|
|
richard <noreply(at)example(dot)com> writes:
> On Sun, 04 May 2014 22:27:01 -0400, Jerry Stuckle wrote:
<snip>
>> But you didn't show your entire code, so it's hard to say what could be
>> wrong.
>
> for ($x=0;$x<=$number;$x++){
>
> if ($files[x] !=".") {
^ not $x
> $master[$lo]=$files[$x];
> $lo=$lo+1;
> }
> }
You really need to find some what to work which lets you see all the
notices and warnings that PHP can give you.
By the way, writing $master[] = ... puts an element at the next unused
numerical index in the array which might be what you are doing here with
$lo. I'd write the above like this:
foreach ($files as $file)
if ($file !== '.')
$master[] = $file;
--
Ben.
|
|
|