Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,966
Naujausias narys: LnKnPrK1

Naujausi straipsniai

Paskutiniai nariai

LnKnPrK1 3 dienos
inti 2 savaitės
kileedyg 9 savaitės
Reikalas14 savaitės
Kižas15 savaitės
Bruksnys16 savaitės
laleceylan5018 savaitės
minimukas18 savaitės
N-2021 savaitės
Rytis22 savaitės
DjArtas23 savaitės
WolfHammer23 savaitės
Nostesi33 savaitės
Wisedocs34 savaitės
asdasdddz37 savaitės
Paslapties K...38 savaitės
Audrius_1741 savaitės
Simbijanas53 savaitės
Karinacraft54 savaitės
Žmogus57 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 216.73.216.104
Naujienų: 529
Straipsnių: 235
Temų: 52,591
Postų: 522,551
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.

LnKnPrK1
2026 Bir. 21 09:06:52
Sveiki, gal kas is administracijos gali parasyti man PM,aciu

minimukas
2026 Vas. 21 08:02:25
oi oi akinanti šypsen yra dar cia gyvu? akinanti šypsen

N-20
2026 Vas. 6 21:02:05
O mes dar gyvi šypsosi)

WolfHammer
2026 Sau. 25 01:01:35
drovus

Žmogus
2025 Geg. 31 10:05:18
Kas geresnio? šypsosi

Š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
Nesuprantu kodėl taip:
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Žaliems

Autorius: House Peržiūrų: 4139      Spausdinti temą
2010 Lap. 8 16:11:53          1 žinutė iš 5
Spausdinti pranešimą


kodėl skiriasi tarpai tarp panelių? čia tik apklausos panelei tai yra.

čia yra ip_poll_panel infusionas


<?php
/*-------------------------------------------------------+
| <span style="border-bottom: 1px dotted black;">PHP</span>-Fusion Content Management System
| Copyright © 2002 - 2008 Nick Jones
| <a href='http://www.php-fusion.co.uk/' target='_blank'><span style='color:005C5B'>http://www.php-fusion.co.uk/</span></a>
+--------------------------------------------------------+
| Filename: ip_poll_panel.php
| Author: Jeepers1993
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at <a href='http://www.gnu.org/licenses/agpl.html.' target='_blank'><span style='color:005C5B'>www.gnu.org/licenses/agpl.html.</span></a> Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/

if (file_exists(INFUSIONS."ip_poll_panel/locale/".$settings['locale'].".php")) {
include INFUSIONS."ip_poll_panel/locale/".$settings['locale'].".php";
} else {
include INFUSIONS."ip_poll_panel/locale/Lithuanian.php";
}
 
openside($locale['PLAN_100']);
if (isset($_POST['cast_vote'])) {
$voteoption = $_POST['voteoption'];
$poll_id = $_POST['poll_id'];
$sql = dbquery("SELECT * FROM ".$db_prefix."ip_polls WHERE poll_id='$poll_id'");
$data = dbarray($sql);
$poll_ips = explode("|", $data['poll_ips']);
if (!in_array(USER_IP, $poll_ips)) {
array_push($poll_ips, USER_IP);
$poll_ips = implode("|", $poll_ips);
$result = dbquery("UPDATE ".$db_prefix."ip_polls SET poll_votes_$voteoption=poll_votes_$voteoption+1, poll_ips='$poll_ips' WHERE poll_id=$poll_id");
header("Location: ".FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : ""));
}
}
$result = dbquery("SELECT * FROM ".$db_prefix."ip_polls ORDER BY poll_started DESC LIMIT 1");
if (dbrows($result) != 0) {
$data = dbarray($result);
$poll_title = $data['poll_title'];
$poll_ips = explode("|", $data['poll_ips']);
$poll_votes = 0;
for ($i=0; $i<=9; $i++) {
if ($data["poll_opt_".$i]) $poll_option[$i] = $data["poll_opt_".$i];
$poll_votes = $poll_votes + $data["poll_votes_".$i];
}
if (!in_array(USER_IP, $poll_ips) && $data['poll_ended'] == 0) {
$poll = ""; $i = 0; $num_opts = count($poll_option);
while ($i < $num_opts) {
$poll .= "<input type='radio' name='voteoption' value='$i'> $poll_option[$i]<br>\n";
$i++;
}
echo "<form name='voteform' method='post' action='".FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : "")."'>
<b>$poll_title</b><br><br>
$poll<center><input type='hidden' name='poll_id' value='"
.$data['poll_id']."'>
<input type='submit' name='cast_vote' value='"
.$locale['PLAN_101']."' class='button'></center>
</form>\n"
;
} else {
$poll = ""; $i = 0; $num_opts = count($poll_option);
while ($i < $num_opts) {
$num_votes = $data["poll_votes_".$i];
$opt_votes = ($poll_votes ? number_format(100 / $poll_votes * $num_votes) : 0);
$poll .= "<div>".$poll_option[$i]."</div>
<div><img src='"
.THEME."images/pollbar.gif' alt='".$poll_option[$i]."' height='12' width='$opt_votes%' class='poll'></div>
<div>"
.$opt_votes."% [".$num_votes." ".($num_votes == 1 ? $locale['PLAN_102'] : $locale['PLAN_103'])."]</div><br>\n";
$i++;
}
echo "<b>".$poll_title."</b><br>
$poll
<center>"
.$locale['PLAN_104'].$poll_votes."<br>
"
.$locale['PLAN_105'].showdate("shortdate", $data['poll_started']);
if ($data['poll_ended'] > 0) {
echo "<br>\n".$locale['PLAN_106'].showdate("shortdate", $data['poll_ended'])."\n";
}
$result = dbquery("SELECT * FROM ".$db_prefix."ip_polls");
if (dbrows($result) > 1) {
echo "<br><br><img src='".THEME."images/bullet.gif'>
<a href='"
.INFUSIONS."ip_poll_panel/ip_poll_archive.php' class='side'>".$locale['PLAN_107']."</a> <img src='".THEME."images/bulletb.gif'>\n";
}
echo "</center>\n";
}
} else {
echo "<center>".$locale['004']."</center>\n";
}
closeside();
?>


Ačiū už pagalbą
pagarbiai, Aidas

Portfolio 70%

4 atsakymai:
2010 Lap. 8 17:11:56          2 žinutė iš 5
Spausdinti pranešimą
Galiu būt neteisus, eik į savo dizaino styles.css susirask side_left ir side_right ir ten pridėk eilutę : background-repeat: no-repeat;
+2


Labas.
2010 Lap. 8 19:11:03          3 žinutė iš 5
Spausdinti pranešimą

<?php
 
/*-------------------------------------------------------+
 
| <span style="border-bottom: 1px dotted black;">PHP</span>-Fusion Content Management System
 
| Copyright © 2002 - 2008 Nick Jones
 
| <a href='http://www.php-fusion.co.uk/' target='_blank'><span style='color:005C5B'>http://www.php-fusion.co.uk/</span></a>
 
+--------------------------------------------------------+
 
| Filename: ip_poll_panel.php
 
| Author: Jeepers1993
 
+--------------------------------------------------------+
 
| This program is released as free software under the
 
| Affero GPL license. You can redistribute it and/or
 
| modify it under the terms of this license which you
 
| can read by viewing the included agpl.txt or online
 
| at <a href='http://www.gnu.org/licenses/agpl.html.' target='_blank'><span style='color:005C5B'>www.gnu.org/licenses/agpl.html.</span></a> Removal of this
 
| copyright header is strictly prohibited without
 
| written permission from the original author(s).
 
+--------------------------------------------------------*/

 
if (file_exists(INFUSIONS."ip_poll_panel/locale/".$settings['locale'].".php")) {
 
include INFUSIONS."ip_poll_panel/locale/".$settings['locale'].".php";
 
} else {
 
include INFUSIONS."ip_poll_panel/locale/Lithuanian.php";
 
}
 
 
 
openside($locale['PLAN_100']);
 
if (isset($_POST['cast_vote'])) {
 
$voteoption = $_POST['voteoption'];
 
$poll_id = $_POST['poll_id'];
 
$sql = dbquery("SELECT * FROM ".$db_prefix."ip_polls WHERE poll_id='$poll_id'");
 
$data = dbarray($sql);
 
$poll_ips = explode("|", $data['poll_ips']);
 
if (!in_array(USER_IP, $poll_ips)) {
 
array_push($poll_ips, USER_IP);
 
$poll_ips = implode("|", $poll_ips);
 
$result = dbquery("UPDATE ".$db_prefix."ip_polls SET poll_votes_$voteoption=poll_votes_$voteoption+1, poll_ips='$poll_ips' WHERE poll_id=$poll_id");
 
header("Location: ".FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : ""));
 
}
 
}
 
$result = dbquery("SELECT * FROM ".$db_prefix."ip_polls ORDER BY poll_started DESC LIMIT 1");
 
if (dbrows($result) != 0) {
 
$data = dbarray($result);
 
$poll_title = $data['poll_title'];
 
$poll_ips = explode("|", $data['poll_ips']);
 
$poll_votes = 0;
 
for ($i=0; $i<=9; $i++) {
 
if ($data["poll_opt_".$i]) $poll_option[$i] = $data["poll_opt_".$i];
 
$poll_votes = $poll_votes + $data["poll_votes_".$i];
 
}
 
if (!in_array(USER_IP, $poll_ips) && $data['poll_ended'] == 0) {
 
$poll = ""; $i = 0; $num_opts = count($poll_option);
 
while ($i < $num_opts) {
 
$poll .= "<input type='radio' name='voteoption' value='$i'> $poll_option[$i]<br>\n";
 
$i++;
 
}
 
echo "<form name='voteform' method='post' action='".FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : "")."'>
 
<b>$poll_title</b><br><br>
 
$poll<center><input type='hidden' name='poll_id' value='"
.$data['poll_id']."'>
 
<input type='submit' name='cast_vote' value='"
.$locale['PLAN_101']."' class='button'></center>
 
</form>\n"
;
 
} else {
 
$poll = ""; $i = 0; $num_opts = count($poll_option);
 
while ($i < $num_opts) {
 
$num_votes = $data["poll_votes_".$i];
 
$opt_votes = ($poll_votes ? number_format(100 / $poll_votes * $num_votes) : 0);
 
$poll .= "<div>".$poll_option[$i]."</div>
 
<div><img src='"
.THEME."images/pollbar.gif' alt='".$poll_option[$i]."' height='7' width='$opt_votes%' class='poll'></div>
 
<div>"
.$opt_votes."% [".$num_votes." ".($num_votes == 1 ? $locale['PLAN_102'] : $locale['PLAN_103'])."]</div><br>\n";
 
$i++;
 
}
 
echo "<b>".$poll_title."</b><br>
 
$poll
 
<center>"
.$locale['PLAN_104'].$poll_votes."<br>
 
"
.$locale['PLAN_105'].showdate("shortdate", $data['poll_started']);
 
if ($data['poll_ended'] > 0) {
 
echo "<br>\n".$locale['PLAN_106'].showdate("shortdate", $data['poll_ended'])."\n";
 
}
 
$result = dbquery("SELECT * FROM ".$db_prefix."ip_polls");
 
if (dbrows($result) > 1) {
 
echo "<br><br><img src='".THEME."images/bullet.gif'>
 
<a href='"
.INFUSIONS."ip_poll_panel/ip_poll_archive.php' class='side'>".$locale['PLAN_107']."</a> <img src='".THEME."images/bulletb.gif'>\n";
 
}
 
echo "</center>\n";
 
}
 
} else {
 
echo "<center>".$locale['004']."</center>\n";
 
}
 
closeside();
 
?>
+1

House
VIP narys
Pulkininkas

Nario avataras

Pranešimai: 340
Įstojęs: 2008 Rugp. 21 09:08:18
2010 Lap. 8 20:11:46          4 žinutė iš 5
Spausdinti pranešimą
Supratau kame bėda. Locale/lithuanian.php pasirodo jeigu UTF koduotė tada taip pasidaro
0Geriausias atsakymas


Portfolio 70%
2010 Lap. 8 18:11:42          5 žinutė iš 5
Spausdinti pranešimą
nepasiteisino. mano galva čia infusione bėda. nes sukodavau tai tvarkingai viską. tiesiog būtent tam infusionui taip. Kitom panelem viskas gerai. ačiū už bandymą.
0


Portfolio 70%
Peršokti į forumą: