Skip to content

Instantly share code, notes, and snippets.

@tony1223
Created October 17, 2012 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tony1223/3906722 to your computer and use it in GitHub Desktop.
Save tony1223/3906722 to your computer and use it in GitHub Desktop.
<?php include("_site_header.php"); ?>
<div class="container article-view">
<?php include("_content_nav.php") ?>
<!-- content -->
<div class="content">
<h1> <?=$user->Account ?></h1>
<?php foreach($results as $article){ ?>
<table class="table table-bordered">
<tr>
<td width="50">標題</td>
<td>
<a href="<?=site_url("article/view/".$article->ArticleID)?>">
<?=htmlspecialchars($article->Title)?></a>
</td>
</tr>
<tr>
<td> 內容 </td>
<td><?=nl2br(htmlspecialchars($article->Content))?></td>
</tr>
</table>
<?php } ?>
<p>
<?=$pageLinks?>
</p>
</div>
</div>
<?php include("_site_footer.php"); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment