Navigacija

Vartotojų tinkle

Prisijungusių svečių: 86
Prisijungusių narių: 0
Prisijungusių narių nėra

Registruoti nariai: 25,957
Naujausias narys: keistuole

Naujausi straipsniai

Paskutiniai nariai

Nepas 1 diena
keistuole 2 savaitės
Gizmis 3 savaitės
Reikalas 3 savaitės
Rytis13 savaitės
MaFetas17 savaitės
ozzWANTED18 savaitės
saulyzas20 savaitės
TOMIJUS22 savaitės
Jaunelis37 savaitės
lanis37 savaitės
And2s38 savaitės
Memento Mori43 savaitės
Quwqkibor45 savaitės
asirija49 savaitės
tomeem51 savaitės
weberiz54 savaitės
mRokass57 savaitės
kartoonas58 savaitės
grunskiz61 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 3.15.204.106
Naujienų: 529
Straipsnių: 235
Temų: 52,589
Postų: 522,539
Postų pask. parą: 0
Shout'ų pask. parą: 0
P.S.C. pask. parą: 0
Nuorodų kataloge: 13

Lankomumo Statistika

Peržiūrų šiandien: 22

Iš viso peržiūrų: 22948724

Prisijungti

REGISTRUOTIS
Nario vardas

Slaptažodis



Pamiršai slaptažodį?
Paprašyk naujo

Aktyvuoti save

Šaukykla

Jei norite rašyti žinutes, turite prisijungti.

Nepas
2025 Bal. 9 17:04:13
drovus

Nepas
2025 Bal. 9 17:04:08
drovus

Gizmis
2025 Kov. 15 14:03:50
OMG, smagu matyt sita puslapi veikianti

ozzWANTED
2024 Lap. 30 15:11:14
Taip, vis dar up šypsosi

MaFetas
2024 Lap. 13 22:11:57
hey how, geras dar veikiantis saitas?

Šaukyklos archyvas

Apklausa

Ar esate patenkinti lietuviško vertimo kokybe?

Taip!

Taip, bet yra ką taisyti (parašysiu komentaruose)

Ne

Norėdamas balsuoti turite prisijungti.
Archyvas
Reklama 400x60
nezinau?
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Žaliems

Autorius: justaslt Peržiūrų: 2534      Spausdinti temą
2008 Rugs. 4 18:09:23          1 žinutė iš 10
Spausdinti pranešimą
Gal galite pasakyti kur reiketu iskoti toki faila pvz:viewthread.php ar kitur
<?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 BASEDIR."subheader.php";

require_once BASEDIR."side_left.php";

include LOCALE.LOCALESET."forum/main.php";



if (!isset($lastvisited) || !isNum($lastvisited)) $lastvisited = time();

$threads_per_page = 20;



if (!fusion_romguard_QUERY || !$forum_id || !isNum($forum_id)) fallback("index.php");



$result = dbquery(

"SELECT f.*, f2.forum_name AS forum_cat_name

FROM ".$db_prefix."forums f

LEFT JOIN ".$db_prefix."forums f2 ON f.forum_cat=f2.forum_id

WHERE f.forum_id='".$forum_id."'"

);

if (dbrows($result)) {

$data = dbarray($result);

if (!checkgroup($data['forum_access']) || !$data['forum_cat']) fallback("index.php");

} else {

fallback("index.php");

}

$can_post = checkgroup($data['forum_posting']);



$caption = $data['forum_cat_name']." | ".$data['forum_name'];



opentable($locale['450']);

echo "<table cellspacing='0' cellpadding='0' width='100%'>

<tr>

<td class='smallalt'>

<a href='index.php'>".$settings['sitename']."</a> | $caption</td>\n";

if (iMEMBER && $can_post) {

echo "<td align='right'>

<a href='post.php?action=newthread&forum_id=$forum_id'><img src='".THEME."forum/newthread.gif' alt='".$locale['566']."' style='border:0px;'></a>

</td>\n";

}

echo "</tr>

</table>\n";



$rows = dbrows(dbquery("SELECT * FROM ".$db_prefix."threads WHERE forum_id='$forum_id' AND thread_sticky='0'"));

if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;



if ($rows > $threads_per_page) {

echo "<div align='center' style='margin-top:5px;margin-bottom:5px;'>

".makePageNav($rowstart,20,$rows,3,fusion_romguard_SELF."?forum_id=$forum_id&")."

</div>\n";

}



echo "<table cellpadding='0' cellspacing='0' width='100%' class='tbl-border'>

<tr>

<td>

<table cellspacing='1' cellpadding='0' width='100%'>

<tr>

<td width='20' class='tbl2'> </td>

<td class='tbl2'>".$locale['451']."</td>

<td width='100' class='tbl2'>".$locale['452']."</td>

<td align='center' width='50' class='tbl2'>".$locale['453']."</td>

<td align='center' width='50' class='tbl2'>".$locale['454']."</td>

<td width='120' class='tbl2'>".$locale['404']."</td>";



if (iMEMBER && $can_post) {

if (iMOD || iSUPERADMIN) {

echo "<td align='center' width='20' class='tbl2'></td>\n";

}

}



echo "
</tr>\n";



if ($rowstart == 0) {

$result = dbquery(

"SELECT t.*, COUNT(p.post_id) AS thread_replies, tu1.user_name AS user_author, tu2.user_name AS user_lastuser FROM ".$db_prefix."threads t

LEFT JOIN ".$db_prefix."posts p USING(thread_id)

LEFT JOIN ".$db_prefix."users tu1 ON t.thread_author = tu1.user_id

LEFT JOIN ".$db_prefix."users tu2 ON t.thread_lastuser = tu2.user_id

WHERE t.forum_id='$forum_id' AND thread_sticky='1' GROUP BY thread_id ORDER BY thread_lastpost DESC"

);

if (dbrows($result) != 0) {

while ($data = dbarray($result)) {

if ($data['thread_locked']) {

echo "<tr>\n<td align='center' width='25' class='tbl2'><img src='".THEME."forum/folderlock.gif' alt='".$locale['564']."'></td>";

} else {

if ($data['thread_lastpost'] > $lastvisited) {

$folder = "<img src='".THEME."forum/foldernew.gif' alt='".$locale['560']."'>";

} else {

$folder = "<img src='".THEME."forum/folder.gif' alt='".$locale['561']."'>";

}

echo "<tr>\n<td align='center' width='25' class='tbl2'>$folder</td>";

}

$reps = ceil($data['thread_replies'] / $threads_per_page);

$threadsubject = "<a href='viewthread.php?forum_id=$forum_id&thread_id=".$data['thread_id']."'>".$data['thread_subject']."</a>";

if ($reps > 1) {

$ctr = 0; $ctr2 = 1; $pages = "";

while ($ctr2 <= $reps) {

$pnum = "<a href='viewthread.php?forum_id=$forum_id&thread_id=".$data['thread_id']."&rowstart=$ctr'>$ctr2</a> ";

$pages = $pages.$pnum; $ctr = $ctr + $threads_per_page; $ctr2++;

}

$threadsubject .= " - (".$locale['412'].trim($pages).")";

}

echo "<td class='tbl1'><img src='".THEME."forum/stickythread.gif' alt='".$locale['560']."' style='vertical-align:middle;'>

$threadsubject</td>

<td class='tbl2'><a href='../profile.php?lookup=".$data['thread_author']."'>".$data['user_author']."</a></td>

<td align='center' class='tbl1'>".$data['thread_views']."</td>

<td align='center' class='tbl2'>".($data['thread_replies']-1)."</td>

<td class='tbl1'>".showdate("forumdate", $data['thread_lastpost'])."<br>

<span class='small'>".$locale['406']."<a href='../profile.php?lookup=".$data['thread_lastuser']."'>".$data['user_lastuser']."</a></span></td>";



if (iMEMBER && $can_post) {

if (iMOD || iSUPERADMIN) {

echo "<td align='center' class='tbl2'><a href='".BASEDIR."forum/options.php?step=delete&forum_id=$forum_id&thread_id=".$data['thread_id']."'><img src='".BASEDIR."images/delete.gif' alt='Trinti' style='border:0px;'></a></td>\n";

}

}



echo "
</tr>\n";

}

$threadcount = dbrows($result);

} else {

$threadcount = 0;

}

}



if ($rows != 0) {

$result = dbquery(

"SELECT t.*, COUNT(p.post_id) AS thread_replies, tu1.user_name AS user_author, tu2.user_name AS user_lastuser FROM ".$db_prefix."threads t

LEFT JOIN ".$db_prefix."posts p USING(thread_id)

LEFT JOIN ".$db_prefix."users tu1 ON t.thread_author = tu1.user_id

LEFT JOIN ".$db_prefix."users tu2 ON t.thread_lastuser = tu2.user_id

WHERE t.forum_id='$forum_id' AND thread_sticky='0' GROUP BY thread_id ORDER BY thread_lastpost DESC LIMIT $rowstart,20"

);

$numrows = dbrows($result);

while ($data = dbarray($result)) {

if ($data['thread_locked']) {

echo "<tr>\n<td align='center' width='25' class='tbl2'><img src='".THEME."forum/folderlock.gif' alt='".$locale['564']."'></td>";

} else {

if ($data['thread_lastpost'] > $lastvisited) {

$folder = "<img src='".THEME."forum/foldernew.gif' alt='".$locale['560']."'>";

} else {

$folder = "<img src='".THEME."forum/folder.gif' alt='".$locale['561']."'>";

}

echo "<tr>\n<td align='center' width='25' class='tbl2'>$folder</td>";

}

$reps = ceil($data['thread_replies'] / $threads_per_page);

$threadsubject = "<a href='viewthread.php?forum_id=$forum_id&thread_id=".$data['thread_id']."'>".$data['thread_subject']."</a>";

if ($reps > 1) {

$ctr = 0; $ctr2 = 1; $pages = "";

while ($ctr2 <= $reps) {

$pnum = "<a href='viewthread.php?forum_id=$forum_id&thread_id=".$data['thread_id']."&rowstart=$ctr'>$ctr2</a> ";

$pages = $pages.$pnum; $ctr = $ctr + $threads_per_page; $ctr2++;

}

$threadsubject .= " - (".$locale['412'].trim($pages).")";

}

echo "<td class='tbl1'>$threadsubject</td>

<td class='tbl2'><a href='../profile.php?lookup=".$data['thread_author']."'>".$data['user_author']."</a></td>

<td align='center' class='tbl1'>".$data['thread_views']."</td>

<td align='center' class='tbl2'>".($data['thread_replies']-1)."</td>

<td class='tbl1'>".showdate("forumdate", $data['thread_lastpost'])."<br>

<span class='small'>".$locale['406']."<a href='../profile.php?lookup=".$data['thread_lastuser']."'>".$data['user_lastuser']."</a></span></td>";



if (iMEMBER && $can_post) {

if (iMOD || iSUPERADMIN) {

echo "<td align='center' class='tbl2'><a href='".BASEDIR."forum/options.php?step=delete&forum_id=$forum_id&thread_id=".$data['thread_id']."'><img src='".BASEDIR."images/delete.gif' alt='Trinti' style='border:0px;'></a></td>\n";

}

}



echo "
</tr>\n";

}

} else {

if ($threadcount == 0) {

echo "<tr>\n<td colspan='6' class='tbl1'>".$locale['455']."</td>\n</tr>\n";

}

}



echo "</table>

</td>

</tr>

</table>\n";



if ($rows > $threads_per_page) {

echo "<div align='center' style='margin-top:5px;'>

".makePageNav($rowstart,20,$rows,3,fusion_romguard_SELF."?forum_id=$forum_id&")."

</div>\n";

}



$forum_list = ""; $current_cat = "";

$result = dbquery(

"SELECT f.forum_id, f.forum_name, f2.forum_name AS forum_cat_name

FROM ".$db_prefix."forums f

INNER JOIN ".$db_prefix."forums f2 ON f.forum_cat=f2.forum_id

WHERE ".groupaccess('f.forum_access')." AND f.forum_cat!='0' ORDER BY f2.forum_order ASC, f.forum_order ASC"

);

while ($data2 = dbarray($result)) {

if ($data2['forum_cat_name'] != $current_cat) {

if ($current_cat != "") $forum_list .= "</optgroup>\n";

$current_cat = $data2['forum_cat_name'];

$forum_list .= "<optgroup label='".$data2['forum_cat_name']."'>\n";

}

$sel = ($data2['forum_id'] == $data['forum_id'] ? " selected" : "");

$forum_list .= "<option value='".$data2['forum_id']."'$sel>".$data2['forum_name']."</option>\n";

}

$forum_list .= "</optgroup>\n";

echo "<table width='100%' cellpadding='0' cellspacing='0' style='margin-top:5px;'>

<tr>

<td align='left' class='tbl'>".$locale['540']."<br>

<select name='jump_id' class='textbox' onChange=\"jumpForum(this.options[this.selectedIndex].value);\">

$forum_list</select></td>\n";

if (iMEMBER && $can_post) {

echo "<td align='right'>

<a href='post.php?action=newthread&forum_id=$forum_id'><img src='".THEME."forum/newthread.gif' alt='".$locale['566']."' style='border:0px;'></a>

</td>\n";

}

echo "</tr>

</table>\n";



echo "<table cellpadding='0' cellspacing='0' width='100%'>

<tr>

<td class='tbl1'>

<img src='".THEME."forum/foldernew.gif' alt='".$locale['560']."' style='vertical-align:middle;'> - ".$locale['456']."(

<img src='".THEME."forum/folderhot.gif' alt='".$locale['562']."' style='vertical-align:middle;'> - ".$locale['457']." )<br>

<img src='".THEME."forum/folder.gif' alt='".$locale['561']."' style='vertical-align:middle;'> - ".$locale['458']."<br>

<img src='".THEME."forum/folderlock.gif' alt='".$locale['564']."' style='vertical-align:middle;'> - ".$locale['459']."<br>

<img src='".THEME."forum/stickythread.gif' alt='".$locale['563']."' style='vertical-align:middle;'> - ".$locale['460']."</td>

</tr>

</table>\n";

closetable();



echo "<script type='text/javascript'>

function DeleteItem() {

return confirm('Delete this thread?');

}

function jumpForum(forumid) {

document.location.href='".FORUM."viewforum.php?forum_id='+forumid;

}

</script>\n";



require_once BASEDIR."side_right.php";

require_once BASEDIR."footer.php";

?>

2008 Rugs. 4 18:09:57          2 žinutė iš 10
Spausdinti pranešimą
Nieko nesupratau be žado
2008 Rugs. 4 18:09:47          3 žinutė iš 10
Spausdinti pranešimą
ko tu nori?

2008 Rugs. 4 18:09:14          4 žinutė iš 10
Spausdinti pranešimą
Zapojus parašė:
ko tu nori?
Noriu pinigų. (((:

[galingų saliutų foto]
2008 Rugs. 4 18:09:42          5 žinutė iš 10
Spausdinti pranešimą
justaslt parašė:
Gal galite pasakyti kur reiketu iskoti toki faila pvz:viewthread.php ar kitur
...ilgas kodas...


jazgužy asdfg
2008 Rugs. 4 18:09:17          6 žinutė iš 10
Spausdinti pranešimą
tooni,kas ju nenori? akinanti šypsen

2008 Rugs. 4 18:09:40          7 žinutė iš 10
Spausdinti pranešimą
Zapojus parašė:
tooni,kas ju nenori? akinanti šypsen


Tu.
2008 Rugs. 4 18:09:38          8 žinutė iš 10
Spausdinti pranešimą
as noriu akinanti šypsen

2008 Rugs. 4 18:09:12          9 žinutė iš 10
Spausdinti pranešimą
Zapojus parašė:
as noriu akinanti šypsen
Į burną.

[galingų saliutų foto]
2008 Rugs. 4 18:09:51          10 žinutė iš 10
Spausdinti pranešimą
i kisene,o tu i sikna ;D

Peršokti į forumą: