Skip to content

Instantly share code, notes, and snippets.

@tony1223
Created October 16, 2012 15:44
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/3900058 to your computer and use it in GitHub Desktop.
Save tony1223/3900058 to your computer and use it in GitHub Desktop.
<?php include("_site_header.php"); ?>
<div class="container post">
<?php include("_content_nav.php") ?>
<!-- content -->
<div class="content">
<form action="<?=site_url("article/posting")?>" method="post" >
<?php if(isset($errorMessage)){ ?>
<div class="alert alert-error"><?=$errorMessage?></div>
<?php } ?>
<table>
<tr>
<td>標題</td>
<?php if(isset($title)){ ?>
<td><input type="text" name="title"
value="<?=htmlspecialchars($title)?>" /></td>
<?php }else{ ?>
<td><input type="text" name="title" /></td>
<?php } ?>
</tr>
<tr>
<td> 內容 </td>
<td><textarea name="content" rows="10" cols="60"><?php
if(isset($content)){
echo $content;
}
?></textarea></td>
</tr>
<tr>
<td colspan="2">
<a class="btn" href="<?=site_url("/")?>">取消</a>
<input type="submit" class="btn" value="送出" />
</td>
</tr>
</table>
</form>
</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