<?php
include ('header.php');
/**********************************************************************
* Copyright notice Ja2BU 1.1.
*
* (c) 2011 Predrag Rukavina - admin[at]phpform[dot]net
* All rights reserved
*
* This script is part of the Ja2BU project.
* The Ja2BU project 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* This copyright notice MUST appear in all copies of the script!
************************************************************************/
include ('../classes/class.GenericEasyPagination.php');
?>
<script>
function goto(site) {
var msg = confirm("Are you sure you want to delete this entry? This action cannot be undone!")
if (msg) {window.location.href = site}
else (null)
}
</script>
<div id="vforms">
<a href="menage.php"><div id="cconfig">Manage articles</div></a>
<?php
if(@$_GET["page"] != ""):
$page = @$_GET["page"];
else:
$page = 1;
endif;
define('RECORDS_BY_PAGE',12);
define('CURRENT_PAGE',$page);
$strSQL = "SELECT * FROM article ORDER BY blogid DESC";
$conn->SetFetchMode(ADODB_FETCH_ASSOC);
$rs = $conn->PageExecute($strSQL,RECORDS_BY_PAGE,CURRENT_PAGE);
if(!$rs->EOF) {
$recordsFound = $rs->_maxRecordCount;
while(!$rs->EOF) {
echo "<font size='2'>".$rs->fields["btexty"]."</font><br /><a href=\"javascript:goto('deletearticle.php?id=".$rs->fields["blogid"]."&comy=".$rs->fields["univer"]."')\"><img id='corect' src='images/delete.png' border='0'><font color='#BB0000'>Delete</font></a>";
echo " <a href='editarticle.php?id=".$rs->fields["blogid"]."'><img id='corect' src='images/edit.png' border='0'>Edit Link</a><br /><br />";
$rs->moveNext();
}
$GenericEasyPagination = new GenericEasyPagination(CURRENT_PAGE,RECORDS_BY_PAGE,"eng");
$GenericEasyPagination->setTotalRecords($recordsFound);
echo "<br />";
echo "<strong>Records found: </strong>".$recordsFound;
echo "<br />Records ";
echo $GenericEasyPagination->getListCurrentRecords();
echo "<br />";
echo $GenericEasyPagination->getCurrentPages();
echo "<br />";
}
$conn->Close();
?>
</div>
<?php
include ('footer.php');
/**************************************
* Revision: v.1.1.
***************************************/
?>