Topic: help for foreach wit if statement
It does not work help please
<?php $pages = Page::children('blog'); ?>
<ul class="list-unstyle">
<?php foreach($pages as $page) { ?>
if (strpos(<?php echo $page['title']; ?> ,'a';) !== false) {
<li>tak</li>;
}
<?php } ?>
</ul>