blob: 9bd9138e5ad669381a4d745be6569a6467cdf4d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
require("top.php");
?>
<div>
<form method="post" action="<?php echo $blogRoot; ?>dopost.php">
<input name="title" size="50">
<input type="submit" value="Post" />
<textarea rows="20" cols="93" name="content"></textarea>
</form>
</div>
</body>
</html>
|