Can someone tell me what i am doing wrong here:
for( $i = count( $this->cssFiles ); $i > 0; $i-- )
{
echo "\n <link rel= 'stylesheet' src= $this->cssFiles[$i-1] href= $this->_cssFiles[$i-1] type= 'text/css'> \n";
}
It just outputs:
<link rel= 'stylesheet' src= Array[1-1] href= Array[1-1] type= 'text/css'>
in the source, any idea why?
Thanks in advance.