Hey, so I have this array, called $files (var_dump()ed):
array(2) {
[0]=>
array(1) {
["_c"]=>
array(2) {
["title"]=>
array(1) {
["_v"]=>
string(9) "blueprint"
}
["src"]=>
array(1) {
["_v"]=>
string(20) "blueprint/screen.css"
}
}
}
[1]=>
array(1) {
["_c"]=>
array(2) {
["title"]=>
array(1) {
["_v"]=>
string(7) "general"
}
["src"]=>
array(1) {
["_v"]=>
string(11) "general.css"
}
}
}
}
but when I:
foreach($files as $file){
// etc.
}
I get an Invalid argument supplied for foreach()
Any ideas? thanks.
$files.