Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,957
Naujausias narys: keistuole

Naujausi straipsniai

Paskutiniai nariai

Darexs 3 dienos
Nepas 1 savaitė
keistuole 3 savaitės
Gizmis 4 savaitės
Reikalas 4 savaitės
Rytis14 savaitės
MaFetas18 savaitės
ozzWANTED19 savaitės
saulyzas21 savaitės
TOMIJUS23 savaitės
Jaunelis38 savaitės
lanis38 savaitės
And2s39 savaitės
Memento Mori44 savaitės
Quwqkibor46 savaitės
asirija50 savaitės
tomeem52 savaitės
weberiz55 savaitės
mRokass58 savaitės
kartoonas59 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 18.219.103.116
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
Reikalinga pagalba.
Forumas | Modai, įskiepiai, panelės (PHP-FUSION) | Mods, Panels & Infusions

Autorius: namo Peržiūrų: 1528      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ą: