echo "$path$ImgArray[$counterStart+1]";
why this dosent work
thx
Try echo $path.$ImgArray[$counterStart+1]; And maybe you miss some slashes, too.
I have had issues with the addition code within my array brackets. You may break the code down a little:
$tmp = $counterStart+1; echo "$path".$ImgArra[$tmp];