Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,956
Naujausias narys: saulyzas

Naujausi straipsniai

Paskutiniai nariai

MaFetas 1 savaitė
ozzWANTED 3 savaitės
saulyzas 5 savaitės
TOMIJUS 6 savaitės
Reikalas15 savaitės
Jaunelis21 savaitės
lanis22 savaitės
And2s22 savaitės
Memento Mori27 savaitės
Quwqkibor30 savaitės
asirija34 savaitės
tomeem36 savaitės
weberiz39 savaitės
mRokass41 savaitės
kartoonas42 savaitės
grunskiz45 savaitės
Bruksnys46 savaitės
illusion46 savaitės
ordo47 savaitės
Jurgaila47 savaitės

Informacija:


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

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?

Jaunelis
2024 Lie. 25 11:07:43
Oho vis dar veikia svetainė akinanti šypsen Šimtas metų, matau Šaukykloje nuostalgija. Smagu panaršyt po forumą ir pažiūrėt senas temas šypsosi

And2s
2024 Lie. 17 19:07:04
2008 pirmą kart čia patekau, man buvo 10m ir čia pramokau programavimo.. smagu skaityti senas žinutes, tokia nostalgija akinanti šypsen ačiū Ozz kad saugoji šitą kultūrinį reliktą šypsosi

ozzWANTED
2024 Sau. 17 01:01:00
Desperatiškus komentarus šaukykloje su accountu po mėnesio prasibuvimo, ištryniau. Pasaulis ir taip juodas. Įjungiam šviesą, prašviesės. š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
Reikalinga pagalba.
Forumas | Modai, įskiepiai, panelės (PHP-FUSION) | Mods, Panels & Infusions

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