Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,964
Naujausias narys: laleceylan50

Naujausi straipsniai

Paskutiniai nariai

laleceylan5018:40:12
minimukas 6 dienos
N-20 3 savaitės
Reikalas 3 savaitės
Rytis 4 savaitės
DjArtas 5 savaitės
WolfHammer 5 savaitės
Nostesi15 savaitės
Wisedocs16 savaitės
asdasdddz19 savaitės
Paslapties K...20 savaitės
Audrius_1723 savaitės
Simbijanas35 savaitės
Karinacraft36 savaitės
Žmogus39 savaitės
Bruksnys43 savaitės
Darexs46 savaitės
Nepas46 savaitės
keistuole48 savaitės
Gizmis50 savaitės

Informacija:


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

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

Nepas
2025 Bal. 9 17:04:13
drovus

Š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
Reikalinga pagalba.
Forumas | Modai, įskiepiai, panelės (PHP-FUSION) | Mods, Panels & Infusions

Autorius: namo Peržiūrų: 1793      Spausdinti temą
2009 Sau. 29 12:01:22          1 žinutė iš 7
Spausdinti pranešimą
Turiu infusiona su kuriuo gali failus pateikti narys ir noriu virs pateikimo formos parasyti taisykles.

Noriu , kad atodytu taip:



Kodas:
<?php
/*---------------------------------------------------+
| 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 BASEDIR."subheader.php";
require_once BASEDIR."side_left.php";

if (!iMEMBER) fallback("index.php");

if (file_exists(INFUSIONS."Downloads_Submissions/locale/".$settings['locale'].".php")) {
   include INFUSIONS."Downloads_Submissions/locale/".$settings['locale'].".php";
} else {
   include INFUSIONS."Downloads_Submissions/locale/Lithuanian.php";
}

if (isset($_POST['submit_download']) && $action == "submit") {
   $download_title = stripinput($_POST['download_title']);
   $download_description = stripinput($_POST['download_description']);
   $download_url = stripinput($_POST['download_url']);
   $download_cat = stripinput($_POST['download_cat']);
   $download_license = stripinput($_POST['download_license']);
   $download_os = stripinput($_POST['download_os']);
   $download_version = stripinput($_POST['download_version']);
   $download_filesize = stripinput($_POST['download_filesize']);
   $result = dbquery("INSERT INTO ".$db_prefix."downloads_submissions (download_title, download_description, download_url, download_cat, download_license, download_os, download_version, download_filesize, download_datestamp, download_count, download_submitted) VALUES ('$download_title', '$download_description', '$download_url', '$download_cat', '$download_license', '$download_os', '$download_version', '$download_filesize', '".time()."', '0', '".$userdata['user_id']."')");
   opentable($locale['dls123']);
   echo "<center><br>\n".$locale['dls124']."<br><br>
<a href='submit_download.php'>".$locale['dls125']."</a><br><br>
<a href='../../index.php'>".$locale['dls126']."</a><br><br>\n</center>\n";
   closetable();
}

if ($action == "") {
opentable($locale['dls102']);
$result = dbquery("SELECT * FROM ".$db_prefix."download_cats ORDER BY download_cat_name");
if (dbrows($result) != 0) {
   while ($data = dbarray($result)) {
      $editlist .= "<option value='".$data['download_cat_id']."'>".$data['download_cat_name']."</option>\n";
   }
echo "<form name='submit_download_form' method='post' action='".FUSION_SELF."?action=submit' onSubmit='return validateDownload(this);'>
<table align='center' cellpadding='0' cellspacing='0' width='460'>
<tr>
<td width='80' class='tbl'>".$locale['dls103']."</td>
<td class='tbl'><input type='text' name='download_title' class='textbox' style='width:380px;'></td>
</tr>
<tr>
<td valign='top' width='80' class='tbl'>".$locale['dls104']."</td>
<td class='tbl'><textarea name='download_description' rows='5' class='textbox' style='width:380px;'></textarea></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls105']."</td>
<td class='tbl'><input type='text' name='download_url' class='textbox' style='width:380px;'></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls106']."</td>
<td class='tbl'><select name='download_cat' class='textbox'>$editlist</select></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls107']."</td>
<td class='tbl'><input type='text' name='download_license' class='textbox' style='width:150px;'></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls108']."</td>
<td class='tbl'><input type='text' name='download_os' class='textbox' style='width:150px;'></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls109']."</td>
<td class='tbl'><input type='text' name='download_version' class='textbox' style='width:150px;'></td>
</tr>


<tr>
<td width='80' class='tbl'>".$locale['dls110']."</td>
<td class='tbl'><input type='text' name='download_filesize' class='textbox' style='width:150px;'></td>
</tr>
<tr>
<td align='center' colspan='2' class='tbl'><input type='submit' name='submit_download' value='".$locale['dls111']."' class='button'></td>
</tr>
</table>
</form>\n";
} else {
echo "<center><br>\n".$locale['dls128']."<br><br>\n</center>\n";
}
closetable();
}
echo "<script type='text/javascript'>
function validateDownload(frm) {
   if (frm.download_title.value==\"\" || frm.download_description.value==\"\" || frm.download_url.value==\"\" || frm.download_license.value==\"\" || frm.download_os.value==\"\" || frm.download_version.value==\"\" || frm.download_filesize.value==\"\") {
      alert(\"".$locale['dls127']."\"); return false;
   }
}
</script>\n";
require_once BASEDIR."side_right.php";
require_once BASEDIR."footer.php";
?>




Kur reikia iterpti taisykles?

Remember kids, the more posts you have the bigger your penis is!
Redagavo namo 2009 Sau. 29 12:01:42
2009 Sau. 29 12:01:03          2 žinutė iš 7
Spausdinti pranešimą
Manau po šito opentable($locale['dls102']);

Kiekvienam žmogui yra skirta dovana, tik ne kiekvienas sugeba ją atrasti.
2009 Sau. 29 12:01:52          3 žinutė iš 7
Spausdinti pranešimą
Netinka, meta error

Remember kids, the more posts you have the bigger your penis is!
2009 Sau. 29 12:01:25          4 žinutė iš 7
Spausdinti pranešimą
Dedi su echo?

Kiekvienam žmogui yra skirta dovana, tik ne kiekvienas sugeba ją atrasti.
2009 Sau. 29 13:01:34          5 žinutė iš 7
Spausdinti pranešimą
be, kaip det su echo? iterp i koda jei nesunku...

Remember kids, the more posts you have the bigger your penis is!
2009 Sau. 29 13:01:16          6 žinutė iš 7
Spausdinti pranešimą
<?php
/*---------------------------------------------------+
| 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 BASEDIR."subheader.php";
require_once BASEDIR."side_left.php";

if (!iMEMBER) fallback("index.php");

if (file_exists(INFUSIONS."Downloads_Submissions/locale/".$settings['locale'].".php")) {
include INFUSIONS."Downloads_Submissions/locale/".$settings['locale'].".php";
} else {
include INFUSIONS."Downloads_Submissions/locale/Lithuanian.php";
}

if (isset($_POST['submit_download']) && $action == "submit") {
$download_title = stripinput($_POST['download_title']);
$download_description = stripinput($_POST['download_description']);
$download_url = stripinput($_POST['download_url']);
$download_cat = stripinput($_POST['download_cat']);
$download_license = stripinput($_POST['download_license']);
$download_os = stripinput($_POST['download_os']);
$download_version = stripinput($_POST['download_version']);
$download_filesize = stripinput($_POST['download_filesize']);
$result = dbquery("INSERT INTO ".$db_prefix."downloads_submissions (download_title, download_description, download_url, download_cat, download_license, download_os, download_version, download_filesize, download_datestamp, download_count, download_submitted) VALUES ('$download_title', '$download_description', '$download_url', '$download_cat', '$download_license', '$download_os', '$download_version', '$download_filesize', '".time()."', '0', '".$userdata['user_id']."')");
opentable($locale['dls123']);
echo "<center><br>\n".$locale['dls124']."<br><br>
<a href='submit_download.php'>".$locale['dls125']."</a><br><br>
<a href='../../index.php'>".$locale['dls126']."</a><br><br>\n</center>\n";
closetable();
}

if ($action == "") {
opentable($locale['dls102']);
$result = dbquery("SELECT * FROM ".$db_prefix."download_cats ORDER BY download_cat_name");
if (dbrows($result) != 0) {
while ($data = dbarray($result)) {
$editlist .= "<option value='".$data['download_cat_id']."'>".$data['download_cat_name']."</option>\n";
}
echo "<form name='submit_download_form' method='post' action='".FUSION_SELF."?action=submit' onSubmit='return validateDownload(this);'>
<p align='center'>taisykles</p>
<table align='center' cellpadding='0' cellspacing='0' width='460'>
<tr>
<td width='80' class='tbl'>".$locale['dls103']."</td>
<td class='tbl'><input type='text' name='download_title' class='textbox' style='width:380px;'></td>
</tr>
<tr>
<td valign='top' width='80' class='tbl'>".$locale['dls104']."</td>
<td class='tbl'><textarea name='download_description' rows='5' class='textbox' style='width:380px;'></textarea></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls105']."</td>
<td class='tbl'><input type='text' name='download_url' class='textbox' style='width:380px;'></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls106']."</td>
<td class='tbl'><select name='download_cat' class='textbox'>$editlist</select></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls107']."</td>
<td class='tbl'><input type='text' name='download_license' class='textbox' style='width:150px;'></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls108']."</td>
<td class='tbl'><input type='text' name='download_os' class='textbox' style='width:150px;'></td>
</tr>
<tr>
<td width='80' class='tbl'>".$locale['dls109']."</td>
<td class='tbl'><input type='text' name='download_version' class='textbox' style='width:150px;'></td>
</tr>


<tr>
<td width='80' class='tbl'>".$locale['dls110']."</td>
<td class='tbl'><input type='text' name='download_filesize' class='textbox' style='width:150px;'></td>
</tr>
<tr>
<td align='center' colspan='2' class='tbl'><input type='submit' name='submit_download' value='".$locale['dls111']."' class='button'></td>
</tr>
</table>
</form>\n";
} else {
echo "<center><br>\n".$locale['dls128']."<br><br>\n</center>\n";
}
closetable();
}
echo "<script type='text/javascript'>
function validateDownload(frm) {
if (frm.download_title.value==\"\" || frm.download_description.value==\"\" || frm.download_url.value==\"\" || frm.download_license.value==\"\" || frm.download_os.value==\"\" || frm.download_version.value==\"\" || frm.download_filesize.value==\"\") {
alert(\"".$locale['dls127']."\"); return false;
}
}
</script>\n";
require_once BASEDIR."side_right.php";
require_once BASEDIR."footer.php";
?>

2009 Sau. 29 13:01:15          7 žinutė iš 7
Spausdinti pranešimą
Veikia, dekui +10 abiemmerkia akį

Remember kids, the more posts you have the bigger your penis is!
Redagavo namo 2009 Sau. 29 13:01:21
Peršokti į forumą: