📄 show.php
字号:
<script>
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=175,height=200');");
}
// End -->
</script>
<?PHP
// Xibitz berichtenbalk V1.6
// Copyright Hidde Stokvis
////////////////////Includen//////////////////////
include ("config.php");
///////////////////////////////////////////////////
if ($active == "0") {
echo "
<table border=\"0\" width=\"400\" align=\"center\">
<tr>
<td><b>Fout!</b></td>
</tr>
<tr>
<td colspan=\"2\">Deze berichtenbalk staat op non-actief ingesteld.<br>
</td>
</tr>
</table>
";
} else {
echo "<marquee onmouseover=\"this.stop();\" onmouseout=\"this.start();\" width=\"90%\">";
$sql = "SELECT * FROM XBB_posts ORDER by id DESC";
$query = mysql_query($sql);
$bestaat = mysql_num_rows($query);
if ($bestaat == "0") {
echo "Geen berichten";
} else {
while ($show = mysql_fetch_object($query))
{
echo "<a href=\"mailto:$show->email\">$show->naam</a>: $show->bericht </b></i></u> $scheiding ";
}
}
echo "</marquee> $scheiding<a href=\"javascript:popUp('post.php')\">[ Post ]</a>";
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -