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

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

Prisijungimų istorija:
tabux13:48:33
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ą
PHP-Fusion Mods :: PHP-Fusion modifikacijų forumas :: Patobulinimai
\n";
require_once BASEDIR."footer.php";
?>

photogallery.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";
include LOCALE.LOCALESET."photogallery.php";

define("SAFEMODE", @ini_get("safe_mode") ? true : false);
if (isset($photo_id) && !isNum($photo_id)) fallback(FUSION_SELF);
if (isset($album_id) && !isNum($album_id)) fallback(FUSION_SELF);
if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;

if(isset($photo_id)){
$result = dbquery(
"SELECT tp.*, ta.*, tu.user_id,user_name, SUM(tr.rating_vote) AS sum_rating, COUNT(tr.rating_item_id) AS count_votes
FROM ".$db_prefix."photos tp
LEFT JOIN ".$db_prefix."photo_albums ta USING (album_id)
LEFT JOIN ".$db_prefix."users tu ON tp.photo_user=tu.user_id
LEFT JOIN ".$db_prefix."ratings tr ON tr.rating_item_id = tp.photo_id AND tr.rating_type='P'
WHERE photo_id='$photo_id' GROUP BY tp.photo_id"
);
$data = dbarray($result);
if (!checkgroup($data['album_access'])) {
fallback(FUSION_SELF);
} else {
define("PHOTODIR", PHOTOS.(!SAFEMODE ? "album_".$data['album_id']."/" : ""));
include INCLUDES."comments_include.php";
include INCLUDES."ratings_include.php";
$result=dbquery("UPDATE ".$db_prefix."photos SET photo_views=(photo_views+1) WHERE photo_id='".$photo_id."'");

$pres = dbquery("SELECT photo_id FROM ".$db_prefix."photos WHERE photo_order='".($data['photo_order']-1)."' AND album_id='".$data['album_id']."'");
$nres = dbquery("SELECT photo_id FROM ".$db_prefix."photos WHERE photo_order='".($data['photo_order']+1)."' AND album_id='".$data['album_id']."'");
if (dbrows($pres)) $prev = dbarray($pres);
if (dbrows($nres)) $next = dbarray($nres);

opentable($locale['450']);
if ($data['photo_thumb2']) { $photo_thumb = PHOTODIR.$data['photo_thumb2']; } else { $photo_thumb = ""; }
$photo_file = PHOTODIR.$data['photo_filename'];
$photo_size = @getimagesize($photo_file);

echo "
 Spausdinti temą
Foto galerija (.bmp)
jawa
#1 Spausdinti pranešimą
parašyta 2010-04-22 18:23
Vartotojo avataras

Savekas



Reputacija: 0

Pranešimai: 126
Įstojo: 2007-04-24

Sveiki . Ar imanoma butu padaryti kad i galerija galima butu imesti .bmp formato paveikslelius ? Nors i sarasa ir pridedu .bmp , taciau vistiek negaliu kelti ...

$album_types = array(".gif",".jpg",".jpeg",".png", ".bmp");


Stai mano failai:

administration/photoalbums.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 ADMIN."navigation.php";
require_once INCLUDES."photo_functions_include.php";
include LOCALE.LOCALESET."admin/photoalbums.php";

define("SAFEMODE", @ini_get("safe_mode") ? true : false);

if (!checkrights("PH") || !defined("iAUTH") || $aid != iAUTH) fallback("../index.php");
if (isset($album_id) && !isNum($album_id)) fallback(FUSION_SELF.$aidlink);
if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;
if (!isset($action)) $action = "";

if (isset($_POST['cancel'])) {
redirect(FUSION_SELF.$aidlink);
}

if ($action=="refresh") {
$i = 1; $k = 1;
$result = dbquery("SELECT album_id FROM ".$db_prefix."photo_albums ORDER BY album_order");
while ($data = dbarray($result)) {
$result2 = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order='$i' WHERE album_id='".$data['album_id']."'");
$result2 = dbquery("SELECT photo_id FROM ".$db_prefix."photos WHERE album_id='".$data['album_id']."' ORDER BY photo_order");
while ($data2 = dbarray($result2)) {
$result3 = dbquery("UPDATE ".$db_prefix."photos SET photo_order='$k' WHERE photo_id='".$data2['photo_id']."'");
$k++;
}
$i++; $k = 1;
}
redirect(FUSION_SELF.$aidlink);
}

if (isset($status)) {
if ($status == "savean") {
$title = $locale['400'];
$message = "".$locale['410']."";
} elseif ($status == "saveau") {
$title = $locale['401'];
$message = "".$locale['411']."";
} elseif ($status == "saveae") {
$title = $locale['420'];
$message = "".$locale['421']."
\n";
if ($error == 1) { $message = $locale['422']; }
elseif ($error == 2) { $message = sprintf($locale['425'], parsebytesize($settings['photo_max_b'])); }
elseif ($error == 3) { $message = $locale['424']; }
elseif ($error == 4) { $message = sprintf($locale['423'], $settings['photo_max_w'], $settings['photo_max_h']); }
} elseif ($status == "delt") {
$title = $locale['402'];
$message = "".$locale['412']."";
} elseif ($status == "dely") {
$title = $locale['402'];
$message = "".$locale['413']."";
} elseif ($status == "deln") {
$title = $locale['402'];
$message = "".$locale['414']."
\n".$locale['415'];
}
opentable($title);
echo "
".$message."
\n";
closetable();
tablebreak();
}

if (isset($_POST['cancel'])) {
redirect(FUSION_SELF.$aidlink);
}

if ($action == "deletethumb") {
$data = dbarray(dbquery("SELECT album_thumb,album_order FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'"));
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_thumb='$album_thumb' WHERE album_id='$album_id'");
@unlink(PHOTOS.$data['album_thumb']);
redirect(FUSION_SELF.$aidlink."&status=delt&album_id=$album_id");
} elseif ($action == "delete") {
if (dbcount("(album_id)", "photos", "album_id='$album_id'")) {
redirect(FUSION_SELF.$aidlink."&status=deln");
} else {
$data = dbarray(dbquery("SELECT album_thumb,album_order FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'"));
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=(album_order-1) WHERE album_order>'".$data['album_order']."'");
$result = dbquery("DELETE FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'");
if ($data['album_thumb']) @unlink(PHOTOS.$data['album_thumb']);
if (!SAFEMODE) rmdir(PHOTOS."album_".$album_id);
redirect(FUSION_SELF.$aidlink."&status=dely");
}
} elseif ($action == "mup") {
if (!isNum($order)) fallback(FUSION_SELF.$aidlink);
$data = dbarray(dbquery("SELECT album_id FROM ".$db_prefix."photo_albums WHERE album_order='$order'"));
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order+1 WHERE album_id='".$data['album_id']."'");
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order-1 WHERE album_id='$album_id'");
$rowstart = $order > $settings['thumbs_per_page'] ? ((ceil($order / $settings['thumbs_per_page'])-1)*$settings['thumbs_per_page']) : "0";
redirect(FUSION_SELF.$aidlink."&rowstart=$rowstart");
} elseif ($action == "mdown") {
if (!isNum($order)) fallback(FUSION_SELF.$aidlink);
$data = dbarray(dbquery("SELECT album_id FROM ".$db_prefix."photo_albums WHERE album_order='$order'"));
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order-1 WHERE album_id='".$data['album_id']."'");
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order+1 WHERE album_id='$album_id'");
$rowstart = $order > $settings['thumbs_per_page'] ? ((ceil($order / $settings['thumbs_per_page'])-1)*$settings['thumbs_per_page']) : "0";
redirect(FUSION_SELF.$aidlink."&rowstart=$rowstart");
} elseif (isset($_POST['save_album'])) {
$error = "";
$album_title = stripinput($_POST['album_title']);
$album_description = stripinput($_POST['album_description']);
$album_access = isNum($_POST['album_access']) ? $_POST['album_access'] : "0";
$album_order = isNum($_POST['album_order']) ? $_POST['album_order'] : "";
if (!SAFEMODE && $action != "edit") {
$result = dbarray(dbquery("SHOW TABLE STATUS LIKE '".$db_prefix."photo_albums'"));
$album_id = $result['Auto_increment'];
@mkdir(PHOTOS."album_".$album_id, 0755);
@copy(IMAGES."index.php", PHOTOS."album_".$album_id."/index.php");
}
if (is_uploaded_file($_FILES['album_pic_file']['tmp_name'])) {
$album_types = array(".gif",".jpg",".jpeg",".png", ".bmp");
$album_pic = $_FILES['album_pic_file'];
$album_ext = strtolower(strrchr($album_pic['name'],"."));
if (!preg_match("/^[-0-9A-Z_\.\[\]\s]+$/i", $album_pic['name'])) {
$error = 1;
} elseif ($album_pic['size'] > $settings['photo_max_b']){
$error = 2;
} elseif (!in_array($album_ext, $album_types)) {
$error = 3;
} else {
@unlink(PHOTOS."temp".$album_ext);
move_uploaded_file($album_pic['tmp_name'], PHOTOS."temp".$album_ext);
chmod(PHOTOS."temp".$album_ext, 0644);
$imagefile = @getimagesize(PHOTOS."temp".$album_ext);
if ($imagefile[0] > $settings['photo_max_w'] || $imagefile[1] > $settings['photo_max_h']) {
$error = 4;
@unlink(PHOTOS."temp".$album_ext);
} else {
$album_thumb = image_exists(PHOTOS, $album_pic['name']);
createthumbnail($imagefile[2], PHOTOS."temp".$album_ext, PHOTOS.$album_thumb, $settings['thumb_w'], $settings['thumb_h']);
@unlink(PHOTOS."temp".$album_ext);
}
}
}
if (!$error) {
if ($action == "edit") {
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_title='$album_title', album_description='$album_description',".(isset($album_thumb)?" album_thumb='$album_thumb',":"")." album_user='".$userdata['user_id']."', album_access='$album_access' WHERE album_id='$album_id'");
$rowstart = $album_order > $settings['thumbs_per_page'] ? ((ceil($album_order / $settings['thumbs_per_page'])-1)*$settings['thumbs_per_page']) : "0";
redirect(FUSION_SELF.$aidlink."&status=saveau&rowstart=$rowstart");
} else {
if (!$album_order) $album_order = dbresult(dbquery("SELECT MAX(album_order) FROM ".$db_prefix."photo_albums"), 0) + 1;
$result = dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=(album_order+1) WHERE album_order>='$album_order'");
$result = dbquery("INSERT INTO ".$db_prefix."photo_albums (album_title, album_description, album_thumb, album_user, album_access, album_order, album_datestamp) VALUES ('$album_title', '$album_description', '$album_thumb', '".$userdata['user_id']."', '$album_access', '$album_order', '".time()."')");
$rowstart = $album_order > $settings['thumbs_per_page'] ? ((ceil($album_order / $settings['thumbs_per_page'])-1)*$settings['thumbs_per_page']) : "0";
redirect(FUSION_SELF.$aidlink."&status=savean&rowstart=$rowstart");
}
} else {
redirect(FUSION_SELF.$aidlink."&status=saveae&error=$error");
}
} else {
if ($action == "edit"){
$result = dbquery("SELECT * FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'");
$data = dbarray($result);
$album_title = $data['album_title'];
$album_description = $data['album_description'];
$album_thumb = $data['album_thumb'];
$album_access = $data['album_access'];
$album_order = $data['album_order'];
$formaction = FUSION_SELF.$aidlink."&action=edit&album_id=$album_id";
opentable($locale['401']);
} else {
$album_id = "";
$album_title = "";
$album_description = "";
$album_thumb = "";
$album_access = "";
$album_order = "";
$formaction = FUSION_SELF.$aidlink;
opentable($locale['400']);
}
$access_opts = ""; $sel = "";
$user_groups = getusergroups();
while(list($key, $user_group) = each($user_groups)){
$sel = ($album_access == $user_group['0'] ? " selected" : "");
$access_opts .= "\n";
}
echo "
















\n


\n\n
".$locale['440']."
".$locale['441']."

>', '');\">
>', '');\">
>', '');\">
>
>
>
>
>', '');\">
>', '');\">
".$locale['442']." \n";
if ($action == "") echo $locale['443']."";
echo "
".$locale['444'];
if ($action && $album_thumb && file_exists(PHOTOS.$album_thumb)) {
echo "

\n".$locale['470']."
'album_thumb'";
} else {
echo "
";
}
echo "


\n";
if ($action) {
echo "\n";
echo "\n";
}
echo "
\n
\n";
closetable();
}
tablebreak();
opentable($locale['460']);
$rows = dbcount("(album_id)", "photo_albums");
if ($rows) {
$result = dbquery(
"SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
ORDER BY album_order LIMIT $rowstart,".$settings['thumbs_per_page']
);
$counter = 0; $k = ($rowstart == 0 ? 1 : $rowstart + 1);
echo "\n\n";
while ($data = dbarray($result)) {
$up = ""; $down = "";
if ($rows != 1){
$orderu = $data['album_order'] - 1;
$orderd = $data['album_order'] + 1;
if ($k == 1){
$down = " \n'".$locale['468']."'\n";
}elseif ($k < $rows){
$up = "'".$locale['467']."' \n";
$down = " \n'".$locale['468']."'\n";
} else {
$up = "'".$locale['467']."' \n";
}
}
if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "\n\n";
echo "\n";
$counter++; $k++;
}
echo "\n\n\n\n
\n";
echo "".$data['album_title']."

\n";
if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
echo "'".$locale['461']."'";
} else {
echo $locale['462'];
}
echo "


\n".$up;
echo "".$locale['469']." \n";
echo "".$locale['470']." ".$down;
echo "

\n".$locale['463'].showdate("shortdate", $data['album_datestamp'])."
\n";
echo $locale['464']."".$data['user_name']."
\n";
echo $locale['465'].getgroupname($data['album_access'])."
\n";
echo $locale['466'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."

\n";
echo "
".$locale['480']."
\n";
if ($rows > $settings['thumbs_per_page']) echo "
\n".makePageNav($rowstart,$settings['thumbs_per_page'],$rows,3,FUSION_SELF.$aidlink."&")."\n
\n";
}else{
echo "
".$locale['481']."
\n";
}
closetable();

echo "
\n\n\n";
if ((isset($prev['photo_id']) && isNum($prev['photo_id'])) || (isset($next['photo_id']) && isNum($next['photo_id']))) {
if (isset($prev)) echo "\n";
if (isset($next)) echo "\n";
}
echo "\n
\n";
echo "".$locale['400']." >\n";
echo "".$data['album_title']." >\n";
echo "".$data['photo_title']."\n
<<>>
\n";
tablebreak();
echo "
\n";
echo ">";
echo "'".$data['photo_filename']."'\n
\n";
echo "
\n";
if ($data['photo_description']) echo nl2br(parseubb($data['photo_description']))."

\n";
echo $locale['433'].showdate("shortdate", $data['photo_datestamp'])."
\n";
echo $locale['434']."".$data['user_name']."
\n";
echo $locale['454']."$photo_size[0] x $photo_size[1] ".$locale['455']."
\n";
echo $locale['456'].parsebytesize(filesize($photo_file))."
\n";
echo $locale['436'].dbcount("(comment_id)", "comments", "comment_type='P' AND comment_item_id='".$data['photo_id']."'")."
\n";
echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("'*'", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."
\n";
echo $locale['457'].$data['photo_views']."\n";
closetable();
if ($data['photo_allow_comments'] == "1") showcomments("P","photos","photo_id",$photo_id,FUSION_SELF."?photo_id=$photo_id");
if ($data['photo_allow_ratings']) showratings("P",$photo_id,FUSION_SELF."?photo_id=$photo_id");
}
} elseif (isset($album_id)) {
define("PHOTODIR", PHOTOS.(!SAFEMODE ? "album_".$album_id."/" : ""));
$result = dbquery(
"SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
WHERE album_id='$album_id'"
);
if (!dbrows($result)) {
fallback(FUSION_SELF);
} else {
$data = dbarray($result);
if (!checkgroup($data['album_access'])) {
fallback(FUSION_SELF);
} else {
$rows = dbcount("(photo_id)", "photos", "album_id='$album_id'");
opentable($locale['420']);
tablebreak();
echo "\n\n";
echo "\n";
echo "\n\n";
echo "\n\n\n
".$locale['421'].$data['album_title']."
\n";
echo "
".nl2br(parseubb($data['album_description']))."
\n
\n
\n";
if ($rows) {
$pdata = dbarray(dbquery("SELECT tp.*, tu.user_id,user_name FROM ".$db_prefix."photos tp LEFT JOIN ".$db_prefix."users tu ON tp.photo_user=tu.user_id WHERE album_id='$album_id' ORDER BY photo_datestamp DESC LIMIT 1"));
echo $locale['422']."$rows
\n";
echo $locale['423']."".$pdata['user_name']."".$locale['424'].showdate("longdate", $pdata['photo_datestamp'])."\n";
} else {
echo $locale['425']."\n";
}
echo "
\n
";
tablebreak();
closetable();
if ($rows) {
tablebreak();
opentable($locale['430']);
$result = dbquery(
"SELECT tp.*, tu.user_id,user_name, SUM(tr.rating_vote) AS sum_rating, COUNT(tr.rating_item_id) AS count_votes
FROM ".$db_prefix."photos tp
LEFT JOIN ".$db_prefix."users tu ON tp.photo_user=tu.user_id
LEFT JOIN ".$db_prefix."ratings tr ON tr.rating_item_id = tp.photo_id AND tr.rating_type='P'
WHERE album_id=$album_id GROUP BY photo_id ORDER BY photo_order LIMIT $rowstart,".$settings['thumbs_per_page']
);
$counter = 0;
echo "\n\n\n\n
\n";
echo "".$locale['400']." >\n";
echo "".$data['album_title']."\n";
echo "
\n";
tablebreak();
echo "\n\n";
while ($data = dbarray($result)) {
if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "\n\n";
echo "\n";
$counter++;
}
echo "\n
\n";
echo "".$data['photo_title']."

\n";
if ($data['photo_thumb1'] && file_exists(PHOTODIR.$data['photo_thumb1'])){
echo "'".$data['photo_thumb1']."'";
} else {
echo $locale['432'];
}
echo "


\n\n";
echo $locale['433'].showdate("shortdate", $data['photo_datestamp'])."
\n";
echo $locale['434']."".$data['user_name']."
\n";
echo $locale['436'].dbcount("(comment_id)", "comments", "comment_type='P' AND comment_item_id='".$data['photo_id']."'")."
\n";
echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("'*'", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."
\n";
echo $locale['435'].$data['photo_views']."

\n";
echo "
\n";
closetable();
}
if ($rows > $settings['thumbs_per_page']) echo "
\n".makePageNav($rowstart,$settings['thumbs_per_page'],$rows,3,FUSION_SELF."?album_id=$album_id&")."\n
\n";
}
}
} else {
opentable($locale['400']);
$rows = dbcount("(album_id)", "photo_albums", groupaccess('album_access'));
if ($rows) {
$result = dbquery(
"SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
WHERE ".groupaccess('album_access')." ORDER BY album_order
LIMIT $rowstart,".$settings['thumbs_per_page']
);
$counter = 0; $r = 0; $k = 1;
echo "\n\n";
while ($data = dbarray($result)) {
if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "\n\n";
echo "\n";
$counter++; $k++;
}
echo "\n
\n";
echo "".$data['album_title']."

\n";
if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
echo "'".$data['album_thumb']."'";
} else {
echo $locale['402'];
}
echo "


\n\n";
echo $locale['403'].showdate("shortdate", $data['album_datestamp'])."
\n";
echo $locale['404']."".$data['user_name']."
\n";
echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."

\n";
echo "
\n";
closetable();
if ($rows > $settings['thumbs_per_page']) echo "
\n".makePageNav($rowstart,$settings['thumbs_per_page'],$rows,3)."\n
\n";
}else{
echo "

".$locale['406']."

\n";
closetable();
}
}

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

http://sensation-...  
PM
tabux
#2 Spausdinti pranešimą
parašyta 2010-04-22 19:12
Vartotojo avataras

S.Administratorius



Reputacija: 0

Pranešimai: 1009
Įstojo: 2008-10-16

na matai nera toki kvaili, kad tokio formato paveiksliukus kelt  
PM
jawa
#3 Spausdinti pranešimą
parašyta 2010-04-23 15:13
Vartotojo avataras

Savekas



Reputacija: 0

Pranešimai: 126
Įstojo: 2007-04-24

tabux, super atsakymas :D . Tiesiog gavau uzsakyma padaryti cs tinklapi , ir ten ciuvas nori kad zmones talpintu screen, o screen yra .bmp (perdaryt i .jpg gal nemoka :/)
http://sensation-...  
PM
Logix
#4 Spausdinti pranešimą
parašyta 2010-04-23 18:38
Savekas



Reputacija: 0

Pranešimai: 111
Įstojo: 2009-07-20

Tai tu jam peradaryk :D arba tegul eina http://pixlr.com/express  
PM
Peršokti į forumą: