PHP-Fusion Mods
Navigacija
Apsauga
Apsauga Neleista registracija: 38943
Šiandien: 20
Prisijungę nariai
» Svečių: 16
» Narių: 0

» Viso narių: 10,235
» Naujausias: ruslanas tuk

Prisijungimų istorija:
tabux17:07:36
sanpernepamenu
Zbigniew@nepamenu
CepelinasXnepamenu
VV91DDnepamenu
Minusnepamenu
priezilviciunepamenu
EdvinasG1337nepamenu
rolandas94nepamenu
Edis2nepamenu
klubogerbejasnepamenu
Miskinisnepamenu
Pask. modai
Prisijungti
Vardas

Slaptažodis



Dar ne narys?
Registruotis.

Pamiršai slaptažodį?
Prašyk naujo!.

Naujausi prašymai
[L] testas
Narių apklausa
Ar dar kuriate tinklalapius?

Ne
Ne
0% [0 Balsai]

Taip
Taip
88% [7 Balsai]

Naudojuosi socialiniais tinklais
Naudojuosi socialiniais tinklais
13% [1 Balsas]

Balsai: 8
Kad galėtum balsuoti, turi prisijungti.
Pradėta: 2022-05-29 19:54
Shoutbox
You must login to post a message.

2026-03-21 19:07

2025-07-13 17:07
svx, smagu kad dar atsiranda naujų narių Šypsosi2

2024-03-07 22:13
Oj Tabux… apkabinčiau už tą moderatorių 😁

2024-02-22 17:40
Šypsosi2 jo buvo laikai.. Senukai jau mes. Bega laikas greiciau nei noretusi. Smagu matyti kad uzsuka seni nariai, ne as vienas Šypsosi

2024-02-20 22:18
Zodziu.. Nostalgija. Sorry Tabux uz spam’a, netelpa viskas i viena shout’a. 😁

Shoutbox Archive
Peržiūrėti temą
 Spausdinti temą
Padekit..
body
#1 Spausdinti pranešimą
parašyta 2007-04-14 15:42
Vartotojo avataras

Naujokas



Reputacija: 0

Pranešimai: 7
Įstojo: 2007-03-25

Sveiki, kas geletu padeti man su nevs_cats.php man reikia, kad butu taip kaip news.php, kad rodytu po penkias naujienas puslapyje, mano news_cats.php rodo visas naujienas vienam puslapyje.. Stai kodas
Download source  Code
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright 2002 - 2005 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)) {
   $items_per_page = 11;
   if (isset($cat_id)) {
      $result = dbquery(\"SELECT * FROM \".$db_prefix.\"news_cats WHERE news_cat_id='$cat_id'\");
      if (dbrows($result) || $cat_id == 0) {
         $data = dbarray($result);
         $rows = dbcount(\"(news_id)\", \"news\", \"news_cat='$cat_id' AND \".groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\") AND (news_end='0'||news_end>=\".time().\")\");
         $result = dbquery(\"SELECT * FROM \".$db_prefix.\"news WHERE news_cat='$cat_id' AND \".groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\") AND (news_end='0'||news_end>=\".time().\") ORDER BY news_datestamp DESC\");
         //opentable(\"News Items in \" .$data['news_cat_name']. \" Category\");
         //closetable();
      }
   } else {
      $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 \".groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\") AND (news_end='0'||news_end>=\".time().\")
         ORDER BY news_datestamp DESC LIMIT $rowstart,$items_per_page\"
      );
      $rows = dbcount(\"(news_id)\", \"news\", groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\") AND (news_end='0'||news_end>=\".time().\")\");
   }
   if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;
   if ($rows != 0) {
      $i = 1;
      $numrows = dbrows($result);
      while ($data = dbarray($result)) {
         $news_cat_image = \"\";
         $news_subject = \"\".stripslashes($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 = \"\";
}
         }
         $news_news = stripslashes($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\" => $data['news_extended'] ? \"y\" : \"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 ($i != $numrows) { tablebreak(); } $i++;
      }
      if ($rows > $items_per_page) echo \"
\n\".makePageNav($rowstart,$items_per_page,$rows,3).\"\n
\n\";
   } else {
      opentable($locale['046']);
      echo \"

\n\".$locale['047'].\"

\n
\n\";
      closetable();
   }
} else {
   if (!isNum($readmore)) fallback(FUSION_SELF);
   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 = \"'\".$data2['news_cat_name'].\"'\";
            }
         }
         $news_news = stripslashes($data['news_extended'] ? $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\";



 
PM
zilvis
#2 Spausdinti pranešimą
parašyta 2007-04-14 16:36
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 54
Įstojo: 2007-03-18

/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright 2002 - 2005 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)) {
$items_per_page = 5;
if (isset($cat_id)) {
$result = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='$cat_id'");
if (dbrows($result) || $cat_id == 0) {
$data = dbarray($result);
$rows = dbcount("(news_id)", "news", "news_cat='$cat_id' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
$result = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='$cat_id' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC");
//opentable("News Items in " .$data['news_cat_name']. " Category");
//closetable();
}
} else {
$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 ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")
ORDER BY news_datestamp DESC LIMIT $rowstart,$items_per_page"
);
$rows = dbcount("(news_id)", "news", groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
}
if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;
if ($rows != 0) {
$i = 1;
$numrows = dbrows($result);
while ($data = dbarray($result)) {
$news_cat_image = "";
$news_subject = "".stripslashes($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 = "";
}
}
$news_news = stripslashes($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" => $data['news_extended'] ? "y" : "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 ($i != $numrows) { tablebreak(); } $i++;
}
if ($rows > $items_per_page) echo "
\n".makePageNav($rowstart,$items_per_page,$rows,3)."\n
\n";
} else {
opentable($locale['046']);
echo "

\n".$locale['047']."

\n
\n";
closetable();
}
} else {
if (!isNum($readmore)) fallback(FUSION_SELF);
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 = "'".$data2['news_cat_name']."'";
}
}
$news_news = stripslashes($data['news_extended'] ? $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";

wa
Redagavo zilvis 2007-04-14 16:48
 
PM
LTU
#3 Spausdinti pranešimą
parašyta 2007-04-14 16:43
Vartotojo avataras

Savekas



Reputacija: 0

Pranešimai: 109
Įstojo: 2007-04-11

Smiley isjunk ok? :D:D:D
 
PM
zilvis
#4 Spausdinti pranešimą
parašyta 2007-04-14 16:48
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 54
Įstojo: 2007-03-18

wa
 
PM
body
#5 Spausdinti pranešimą
parašyta 2007-04-14 17:27
Vartotojo avataras

Naujokas



Reputacija: 0

Pranešimai: 7
Įstojo: 2007-03-25

aciu.. ;)
 
PM
zilvis
#6 Spausdinti pranešimą
parašyta 2007-04-14 17:55
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 54
Įstojo: 2007-03-18

ner uz ka
 
PM
Peršokti į forumą: