diff options
author | Nathan Lasseter <nathan@4574.co.uk> | 2012-10-10 20:03:21 +0100 |
---|---|---|
committer | Nathan Lasseter <nathan@4574.co.uk> | 2012-10-10 20:03:21 +0100 |
commit | 94c589ed55b20a581810e126b20fdc2d67c68221 (patch) | |
tree | 7d3d84aa3cc291417f667ee48a3fc120b95b2e43 /post.php |
Initial commit
Diffstat (limited to 'post.php')
-rw-r--r-- | post.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/post.php b/post.php new file mode 100644 index 0000000..9bd9138 --- /dev/null +++ b/post.php @@ -0,0 +1,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> |