Hey guys. I want to make that you can change your honor points to gold on the website.
I have this:
Code:
<?php
if (!isset($chkflag)) { exit; }
if (isset($_POST["btnChkFlag"])) {
mysql_select_db($mdba, $h);
$q = "SELECT flags FROM characters WHERE login = '".$_POST["name"]."";
$re = mysql_query($q);
$q = "UPDATE characters SET gold = '".$_POST["honorPoints"]." WHERE login = '".$_POST["name"]."'";
mysql_query($q);
}
echo "<b>Change your honor points to gold</b><br>
<form name=fchkflag method=post action='index.php?mod=".$mod."&opt=".$opt."'>
Character: <input type=text name=acc><br>
<input type=submit name=btnchange value='Go!'>
</form>";
?>
It's totaly wrong though.
I want that you enter your Character name. The honorpoints must be gold then.
Please help