blob: 8636034d3aee82a5d1ec8ec82220bf68a77d5b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
require("settings.php");
require("functions.php");
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo $blogTitle; ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo $blogRoot; ?>styles.css" />
</head>
<body>
<?php title(); ?>
<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>
|