help for voting

Results 1 to 3 of 3
  1. #1
    Member ifa9oool is offline
    MemberRank
    Jun 2014 Join Date
    74Posts

    help for voting

    hello anyone help me :(

    PHP Code:
    <?php          if(isset($funct_msg)) {echo '<div class="alert alert-danger">'.$funct_msg.'</div>';}          if(isset($funct_error)) {echo '<div class="alert alert-danger">'.$funct_error.'</div>';}        $query $mysqli->query("SELECT * from ".$prefix."vote");        if($query->num_rows == 0){            echo "<div class=\"alert alert-danger\">Your administrator has not added any voting sites yet!</div>";        }        echo "        <div class=\"form-group\">        <label for=\"voteSite\">Select Site:</label>        <select name=\"votingsite\" class=\"form-control\" id=\"voteSite\" required>        <option value=\"\" disabled selected>Select Site...</option>";        while($row $query->fetch_assoc()){            echo "<option value=\"".$row['id']."\">".$row['name']."</option>";        }        echo "</select>        </div>";        if(!isset($_SESSION['id'])) {            echo "<input type=\"text\" name=\"name\" maxlength=\"15\" class=\"form-control\" placeholder=\"Username\" required autocomplete=\"off\"/><br/>";        } else {            echo "<input type=\"text\" name=\"name\" maxlength=\"15\" class=\"form-control\" placeholder=\"".$_SESSION['name']."\" value=\"".$_SESSION['name']."\"required autocomplete=\"off\"/><br/>";        }    ?>        <input type="submit" name="submit" value="Submit &raquo;" class="btn btn-primary"/></form> <br/><?php ?>






  2. #2
    Moderator Eric is offline
    ModeratorRank
    Jan 2010 Join Date
    DEV CityLocation
    3,188Posts

    Re: help for voting

    This is MapleBit, you should be posting this in the Alternative Languages section where @greenelfx can help. Cannot update account I would assume has some issue with SQL, but I have no idea as I've never used MapleBit and that error isn't in the code you provided.

  3. #3
    very green greenelfx is offline
    MemberRank
    Jul 2011 Join Date
    1,323Posts

    Re: help for voting

    Make sure you configure your vote and NX columns in the admin panel.



Advertisement