Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Teqila klausimai.

Parašė Donatas· 2010 Lie. 30 18:07:01
#11

Sveiki taigi reikia vienos pagalbos.. Noriu dar pasitvarkyti news.php failą, atrodo viską pasidariau, bet visos naujienos rašomos štai taip :



O kaip padaryti, kad visos naujienos eitų viena po kitos? Štai tokia :



Ačiū už pagalbą. ;)

news.php :
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";

if (isset($readmore) && !isNum($readmore)) fallback(FUSION_SELF);

// Predefined variables, do not edit these values
if ($settings['news_style'] == "1") { $i = 0; $rc = 0; $ncount = 1; $ncolumn = 1; $news_[0] = ""; $news_[1] = ""; $news_[2] = ""; } else { $i = 1; }

// This number should be an odd number to keep layout tidy
$items_per_page = 11;

if (!isset($readmore)) {

$result = dbquery(
"SELECT tn.*, tc.* FROM ".$db_prefix."news tn
LEFT JOIN ".$db_prefix."news_cats tc ON tn.news_cat=tc.news_cat_id
WHERE ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")
ORDER BY news_sticky DESC, news_datestamp DESC LIMIT 8"
);

if (dbrows($result) != 0) {
opentable("Naujienos");

echo "<table cellpadding='2' width='100%'><tr>";

$i = 0;
while ($data = dbarray($result)) {

if ($data['news_cat_image']) {
$news_cat_image = "<img src='".IMAGES_NC.$data['news_cat_image']."' alt='".$data['news_cat_name']."' align='center' style='border:0px;margin-top:1px;margin-right:3px'></a>";
} else {
$news_cat_image = "";
}

$news_news = stripslashes($data['news_news']);

if ($i != 0 && ($i % 2 == 0)) echo "</tr>\n<tr>\n";

echo "<td width='50%'>
<table cellpadding='0' cellspadding='0' width='100%'><tr>
<td width='1%' valign='top'>$news_cat_image</td>
<td valign='top'>
<b>".$data['news_subject']."</b></a> (".showdate("%Y %B %d", $data['news_datestamp']).")<a href='".FUSION_SELF."?readmore=".$data['news_id']."' title='".$locale['042']."'> - Skaityti plačiau</a><br>
".trimlink($news_news, 90)."
</td>
</tr></table>
</td>";

$i++;
}
echo "</tr></table>";

if (dbcount("(*)", "news", "".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")") > 8) {
$result = dbquery("SELECT * FROM ".$db_prefix."news ORDER BY news_datestamp DESC LIMIT 8,10");
echo "<div style='padding-top:20px'>\n<div style='background-color:#F0F0F0; border:1px solid #CCCCCC; padding:7px 5px 7px 5px;'>\n";
echo "<strong style='padding-bottom:5px;'>Senesni įrašai:</strong><br>";

while ($data = dbarray($result)) {
echo "<span style='color:gray'>".showdate("%Y-%m-%d, %H:%M", $data['news_datestamp'])."</span> <strong>&raquo;</strong> <a href='".FUSION_SELF."?readmore=".$data['news_id']."' title='".$locale['042']."'>".$data['news_subject']."</a><br>\n";
}
echo "</div>\n</div>\n";
}

closetable();
} else {
opentable($locale['046']);
echo "<center><br>\n".$locale['047']."<br><br>\n</center>\n";
closetable();
}





} else {
include INCLUDES."comments_include.php";
include INCLUDES."ratings_include.php";
$result = dbquery(
"SELECT tn.*, user_id, user_name FROM ".$db_prefix."news tn
LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
WHERE news_id='$readmore'"
);
if (dbrows($result)!=0) {
$data = dbarray($result);
if (checkgroup($data['news_visibility'])) {
$news_cat_image = "";
if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
$result2 = dbquery("UPDATE ".$db_prefix."news SET news_reads=news_reads+1 WHERE news_id='$readmore'");
$data['news_reads']++;
}
$news_subject = $data['news_subject'];
if ($data['news_cat'] != 0) {
$result2 = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='".$data['news_cat']."'");
if (dbrows($result2)) {
$data2 = dbarray($result2);
$news_cat_image = "<a href='news_cats.php?cat_id=".$data2['news_cat_id']."'><img src='".IMAGES_NC.$data2['news_cat_image']."' alt='".$data2['news_cat_name']."' align='left' style='border:0px;margin-top:3px;margin-right:5px'></a>";
}
}
$news_news = stripslashes($data['news_extended'] ? $data['news_news']."<br><br><br>".$data['news_extended'] : $data['news_news']);
if ($data['news_breaks'] == "y") { $news_news = nl2br($news_news); }
if ($news_cat_image != "") $news_news = $news_cat_image.$news_news;
$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"news_date" => $data['news_datestamp'],
"news_ext" => "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)", "comments", "comment_type='N' AND comment_item_id='".$data['news_id']."'"),
"news_allow_comments" => $data['news_allow_comments']
);
render_news($news_subject, $news_news, $news_info);
if ($data['news_allow_comments']) showcomments("N","news","news_id",$readmore,FUSION_SELF."?readmore=$readmore");
if ($data['news_allow_ratings']) showratings("N",$readmore,FUSION_SELF."?readmore=$readmore");
} else {
redirect(FUSION_SELF);
}
} else {
redirect(FUSION_SELF);
}
}

require_once "side_right.php";
require_once "footer.php";
?>

Redagavo Donatas· 2010 Lie. 30 18:07:29