6 |
kaklik |
1 |
<html><head><link href="shout.css" rel="stylesheet" type="text/css" />
|
|
|
2 |
</head><body>
|
|
|
3 |
<?php
|
|
|
4 |
$Outside = 1;
|
|
|
5 |
include 'shoutoptions.php';
|
|
|
6 |
#User info file
|
|
|
7 |
#(contains variables these functions and entries function with)
|
|
|
8 |
|
|
|
9 |
include 'shoutfunctions.php';
|
|
|
10 |
#ShoutFunctions file, contains functions used in this script.
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
$ShoutDisplay = $ShowArchived;
|
|
|
14 |
#ShowArchived is a variable in the shoutoptions page.
|
|
|
15 |
#ShoutDisplay is a variable called in the the shoutentries page
|
|
|
16 |
#ShoutDisplay determines how many are shown
|
|
|
17 |
|
|
|
18 |
include 'shoutentries.php';
|
|
|
19 |
echo '</div>';
|
|
|
20 |
|
|
|
21 |
#closes the fullshout div opened in shout entries
|
|
|
22 |
?>
|
|
|
23 |
|
|
|
24 |
</body></html>
|