MySQL Forums
Forum List  »  PHP

Re: Select drop down list is only displaying first choice results
Posted by: Douglas Moxley
Date: September 05, 2017 07:04AM

Guess I should have included the php query:

$sql = "SELECT * FROM player_tbl";
$result = mysqli_query($dbLink, $sql);

if(!$result) {
exit; }

if($result) {
$row = mysqli_fetch_row($result);

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.