コード例 #1
0
                                
                        <?php 
}
?>
            
		<img class="widescroll-top" src="../../img/scroll/backdrop_765_top.gif" alt="" width="765" height="50" />
		<div class="widescroll">
                    
			<div class="widescroll-bgimg">
				<div class="widescroll-content">
                                    <div style="text-align: justify;color: #402706">
                                        <h1><?php 
echo $story[0]['title'];
?>
</h1>
                                        <?php 
echo $base->addSpecials(stripslashes($story[0]['content']), '../../img/varrock/lores/');
?>
                                    </div>
				</div>
			</div>
		</div>
		<img class="widescroll-bottom" src="../../img/scroll/backdrop_765_bottom.gif" alt="" width="765" height="50" />	

		<div class="tandc"><?php 
echo $data['wb_foot'];
?>
</div>
</body>
</html>
コード例 #2
0
$rank = $user->getRank($username);
if ($rank < 4) {
    $base->redirect('../index.php');
}
if (!isset($_POST['title']) || !isset($_POST['content'])) {
    $content = '
        <form action="addstory.php" method="POST">
        <table>
        <tr><td>Notice</td><td>Put square brackets ([]) around a letter to make a fancy letter icon. E.G: [s]</td></tr>
        <tr><td>Title</td><td><input type="text" class="button" name="title" maxlength="50"></td></tr>
        <tr><td>Content</td><td><textarea name="content" class="button" cols="60" rows="35"></textarea></td></tr>
        <tr><td>Done?</td><td><input type="submit" class="button" value="Add"> <input type="submit" name="preview" class="button" value="Preview"></td></tr>
        </table>
        </form>';
} elseif (isset($_POST['preview'])) {
    $content = '<center><input type="button" class="button" value="Back" onclick="goBack()" /></center><br/>' . $base->addSpecials(stripslashes(nl2br($_POST['content'])), '../img/varrock/lores/');
} else {
    //insert the new story
    $database->processQuery("INSERT INTO `stories` VALUES (null, ?, ?)", array($_POST['title'], nl2br($_POST['content'])), false);
    //log it
    $base->appendToFile('../forums/logs.txt', array($username . ' added a new story called ' . $_POST['title']));
    $base->redirect('../stories/lores/story.php?id=' . $database->getInsertId());
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns:IE>
<head>
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta name="MSSmartTagsPreventParsing" content="TRUE">