<?php
// =====================================================
//
// s-p-e - Content management system.
// Copyright (C) 2004, 2005, 2010, 2011 Vladimir B. Tsarkov
//
// This file is part of s-p-e.
//
// s-p-e is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// s-p-e is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with s-p-e. If not, see <http://www.gnu.org/licenses/>.
//
// ------
//
// You can contact me via e-mail: lipetsk-gnu-lug at bk period ru
//
// pagethree.php
//
// Abstract: Third column.
//
// Revision History:
//
// 1 2004-03-27 - 2005-07-02 vbt
// 2 2005-07-21 vbt
// 3 2005-09-18 vbt
// 4 2010-06-24 vbt
// 5 2011-01-22 vbt
//
// =====================================================
connect($cfg["host"], $cfg["user"], $cfg["password"], $cfg["database"], $connector);
$result = mysql_query("select theme, text
from ".($cfg["prefix"])."editor
order by date desc, timer desc", $connector)
or die("error #102-1");
while($row = mysql_fetch_array($result, MYSQL_NUM))
{
echo "<p>
<font class='s-normal' id='w-bold'>".$row[0]."</font>
<font class='s-normal' id='w-normal'>".$row[1]."</font>
</p>";
}
mysql_free_result($result);
mysql_close($connector);
?>