Created
May 27, 2012 22:21
-
-
Save glynrob/2816150 to your computer and use it in GitHub Desktop.
DynamoDB view
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($members) > 0): | |
foreach($members as $member => $fields):?> | |
<h1><a href="<?php echo site_url(array('welcome','view', $fields['id'])); ?>"><?php echo $fields['name']; ?></a> | |
<a href="<?php echo site_url(array('welcome','edit', $fields['id'])); ?>" style="font-size:12px;">Edit</a> <a href="<?php echo site_url(array('welcome','delete', $fields['id'])); ?>" style="font-size:12px;">Delete</a></h1> | |
<p><?php echo ($fields['address']); ?><br /> | |
<em>Phone: <?php echo $fields['phone']; ?><br /> | |
Added on <?php echo unix_to_human( $fields['date'] ); ?></em></p> | |
<hr /> | |
<?php | |
endforeach; | |
else:?> | |
<p>No users to date</p> | |
<?php endif; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment