Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Ieškau iš v7i v6

Parašė aiwasuper· 2012 Sau. 3 17:01:13
#3

as ja turiu bet nemoku persidarytu:

<?php
require_once "maincore.php";
require_once THEMES."templates/header.php";
echo"<script type='text/javascript' src='".INCLUDES."title.js'></script>";

?>
<style type="text/css">

tooltip {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8px;
color: #ffffff;
position: absolute;
z-index: 3000;
/*border: 1px solid #111;*/
background-color: #000;
padding: 5px;

}

tooltip h3, #tooltip div { margin: 0; }

div#qTip {
padding: 5px;
border: 1px solid #ffffff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
display: none;
background: #000;
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
text-align: left;
position: absolute;
z-index: 1000;
opacity:0.8;filter:alpha(opacity=80);
}
</style>
<?php


$items_per_page = 21;


if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) {
$_GET['rowstart'] = 0;
}

$rows = dbcount("(*)", DB_NEWS, "news_draft='0' and news_sticky='0'");
//opentable("");

//$result = dbquery("SELECT * FROM ".$db_prefix."news ORDER BY news_datestamp DESC LIMIT 0,4");
$result = dbquery(
"SELECT * FROM ".DB_NEWS."
WHERE news_draft='0' ORDER BY news_datestamp DESC
LIMIT ".$_GET['rowstart'].",$items_per_page"
);


if (dbrows($result) != 0) {
$counter = 0; $columns = 3;
echo "<table cellpadding='0' cellspacing='0' width='100%' style='padding:5px;'>\n<tr>\n";
while($data = dbarray($result)) {
//$kat = dbresult(dbquery("SELECT download_cat_name FROM ".$db_prefix."download_cats WHERE download_cat_id='$id'"), 0);
if ($counter != 0 && ($counter % $columns == 0)) { echo "</tr>\n<tr>\n"; }

$wynik = dbquery("SELECT SUM(rating_vote) FROM ".DB_RATINGS." WHERE rating_type='N' AND rating_item_id='".$data['news_id']."'");
$info2 = dbresult($wynik,0);
$num_rating = dbcount("(rating_vote)", DB_RATINGS, "rating_type='N' AND rating_item_id='".$data['news_id']."'");
$wyn_rating = ($num_rating ? $info2 / $num_rating : 0);
$komentarai = dbcount("(comment_id)", DB_COMMENTS, "comment_type='N' AND comment_item_id='".$data['news_id']."' AND comment_hidden='0'");
// $tas = trimlink($data['news_news'], 600);
$tas = $data['news_breaks'] == "y" ? nl2br(stripslashes($data['news_news'])) : stripslashes($data['news_news']);
echo"<td style='padding:5px;'>";

echo "<table cellpadding='0' cellspacing='0' width='180' class='borderis' onmouseover=\"className='borderis2'\" onmouseout=\"className='borderis'\">\n<tr>\n";
echo"<td colspan='2' align='center'><a href='".BASEDIR."filmu_perziura.php?id=".$data['news_id']."' tit='<table width=200px><tr><td class=c>
<b><span style=color:#0099FF;font-size:12px;>".$data['news_subject']."</span><br><br><span style=color:#ffffff;font-size:10px;>".trimlink($data['news_news'],1000 )."</span>


</td></tr>
</table>'><img src='".IMAGES_N.$data['news_image']."' width='200' height='150' class='optic' /></a></td>";

echo"</tr>
<td width='105' style='padding:2px;'><img src='".THEME."images/retitingai/".ceil($wyn_rating).".png' width='80' height='13' alt='".ceil($wyn_rating)."' style='vertical-align:middle;' title='".ceil($wyn_rating)."' /></td>
<td class='c' align='right'><a href='".BASEDIR."filmu_perziura.php?id=".$data['news_id']."'></center> <b><font size ='2'><img src='".THEME."images/ziureti.png' width='18' height='13' border='0' alt='' <b><span style=color:#ffffff;font-size:10px;></a>".$data['news_reads']."";
echo"</table>";




echo "</td>\n" ;
$counter++;
}
echo "</tr>\n</table>\n";

}


//closetable();
echo"<div align='center'>";
if ($rows > $items_per_page) {
echo makepagenav($_GET['rowstart'], $items_per_page, $rows, 3);
}
require_once THEMES."templates/footer.php";

?>