Created
December 13, 2011 00:08
-
-
Save eminetto/1469762 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if (count($this->data) > 0): ?> | |
<?php foreach($this->data as $d):?> | |
<h3><?php echo $d['title'];?></h3> | |
<p><?php echo $d['description'];?></p> | |
<a href="/post/update/id/<?php echo $d['id'];?>">Atualizar</a><br> | |
<a href="/post/delete/id/<?php echo $d['id'];?>">Excluir</a><br> | |
<?php endforeach;?> | |
<?php echo $this->data;?> | |
<?php endif;?> | |
<a href="/post/create">Criar novo post</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment