Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created December 13, 2011 00:08
Show Gist options
  • Save eminetto/1469762 to your computer and use it in GitHub Desktop.
Save eminetto/1469762 to your computer and use it in GitHub Desktop.
<?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