I am trying to correct a page that management will look at and deside using a drop down menu if applicants are successful or not in there application.
if(isset($_POST[‘Update’])) {
$UpdateQuery = “UPDATE apply SET rank=’$_POST[Rank]’ WHERE id=’$_POST[hidden]’”;
mysql_query($UpdateQuery, $con);
echo "
Real Name | Character Name | Class | Rank | ||
---|---|---|---|---|---|
” . $row[‘realname’] . “ | ”;” . $row[‘charname’] . “ | ”;” . $row[‘class’] . “ | ”;” . $row[‘rank’] . “ | ”;” . “<input type=hidden name=hidden value=” . $row[‘id’] . " | ";” . “”; echo “ |