Populate a Drop down box from a mySQL table in PHP

后端 未结 7 796
温柔的废话
温柔的废话 2020-11-27 05:40

I am trying to populate a Drop down box from results of a mySQL Query, in Php. I\'ve looked up examples online and I\'ve tried them on my webpage, but for some reason they j

7条回答
  •  离开以前
    2020-11-27 06:02

    What if you want to use both id and name in the dropdown? Here is the code for that:

    $mysqli = new mysqli($servername, $username, $password, $dbname);
    $sqlSelect = "SELECT BrandID, BrandName FROM BrandMaster";
    $result = $mysqli -> query ($sqlSelect);
    
    echo "";
    

提交回复
热议问题