Subversion Repositories svnkaklik

Rev

Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<?php
2
//Dc-shout2.0 (c)devilcoderz 2004
3
include "header.php";
4
include "config.php";
5
include "functions.php";
6
if (!session_is_registered(username)) {
7
echo "Your not loged in!" ;
8
}
9
else
10
{
11
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"  height=\"1\">";
12
$result = mysql_query("select * from dc_shoutbox order by id desc ");
13
while($r=mysql_fetch_array($result))
14
{
15
echo"
16
<tr>
17
      <td width=\"443\" height=\"1\" >$r[name] - $r[text] - <a href=\"del.php?shout=$r[id]\">Delete</a></td>
18
</tr>
19
";
20
}
21
echo "</table>";
22
}
23
include "footer.php";
24
?>
25
 
26