Created
January 31, 2009 09:58
-
-
Save walesmd/55503 to your computer and use it in GitHub Desktop.
This file contains 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 ($user !== FALSE): ?> | |
<ul> | |
<li>Username: <?php echo $user->username; ?></li> | |
<li>Joined: <?php echo date('Y-m-md', $user->created_on); ?></li> | |
</ul> | |
<?php else: ?> | |
<p>There is no user with that username. See <?php echo anchor('users/all', 'all users'); ?>.</p> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment