Witam mam taki problem że chciałbym w ten skrypt wstawić tablicę:
<?php
and $node != '.'
and $node != '..'
and $node != '.svn'
and $node != 'thumbnail'
and $node != 'pwg_high'
and $node != 'pwg_representative'
)
{
}
?>
wstawienie na sztywno wygląda tak:
<?php
and $node != '.'
and $node != '..'
and $node != 'sdsdn'
and $node != 'esl'
and $node != 'bcd'
and $node != 'abcd'
//foldery
and $node != 'folder1'
and $node != 'folder2'
and $node != 'folder3'
and $node != 'folder4'
and $node != 'folder5'
and $node != 'folder6'
and $node != 'folder7'
and $node != 'folder8'
and $node != 'folder9'
and $node != 'folder10'
and $node != 'folder11'
and $node != 'folder12'
and $node != 'folder13'
and $node != 'folder14'
)
{
}
?>
ja bym chciał aby tą Tabice wykorzystać
<?php
$conf['folder'] = array("folder1","folder2","folder3","folder4","folder5","folder6","folder7","folder8","folder9",folder
"10","folder11","folder12","folder13","folder14"); ?>
Jakoś to tak wykorzystać no kompletnie nie mam pojęcia jak to połączyć
<?php
and $node != '.'
and $node != '..'
and $node != 'sdsdn'
and $node != 'esl'
and $node != 'bcd'
and $node != 'abcd'
//foldery
and $node != $conf['folder']
)
{
}
?>
Proszę o wszelką pomoc.