Parašė edeni· 2009 Lie. 30 16:07:40
#1
Sveiki, prireikė man pagalbos su kodu. O problema tokia:
įrašius į formą visus duomenis, bet kaip paspaudžiu pateikt, bet nieko į
mysql neisirašo :S
Štai mano kodas:
<?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 ADMIN."navigation.php";
if (!checkrights("S7") || !defined("iAUTH") || $aid != iAUTH) fallback("../index.php");
if (isset($status)) {
if ($status == "pateikta") {
$title = $locale['404'];
$message = "<b>Kova Ideta</b>";
}
opentable("Kova Ideta");
echo "<div align='center'>".$message."</div>\n";
closetable();
tablebreak();
}
if($_POST['pateikti'] != "") {
$result = dbquery("INSERT INTO ".$db_prefix."kovos (priesas, map, rezultatas, hltv, pastabos, win) VALUES ('$_POST[priesas]', '$_POST[map]', '$_POST[rezultatas], '$_POST[hltv], '$_POST[pastabos], '$_POST[win]')");
redirect(FUSION_SELF.$aidlink."?status=pateikta");
}
opentable("Kovok su musu klanu");
echo "<form action='".FUSION_SELF.$aidlink."' method='post'>
Klano pavadinimas:</br> <input type='text' name='priesas' /></br>
Žėmėlapis: </br><input type='text' name='map' /><br />
Rezultatas: </br><input type='text' name='rezultatas' /><br />
Laimėta/Pralaimėta/Lygu: </br><select name='win' ><option value='laimeta'>Laimėta</option>
<option value='pralaimeta'>Pralaimėta</option>
<option value='lygu'>Lygiosios</option>
</select><br />
HLTV: </br><input type='text' name='hltv' /><br />
Pastabos: </br><textarea name='pastabos' cols='22' rows='5'></textarea><br />
<input type='submit' name='pateikti' />
</form>";
closetable();
require_once BASEDIR."footer.php";
?>
Redagavo edeni· 2010 Geg. 10 14:05:58