有人可以告诉我为什么以下内容没有使用dist_itnry
我的数据库列中的值填充下拉列表吗?
<?php
$distUsr = $_SESSION['Distributor_user'];
$con=mysql_connect('localhost','root') or die ("Server connection failure!");
$db=mysql_select_db('regional_data',$con) or die ("Couldn't connect the database");
$SQL1="SELECT dist_itnry, route FROM sr_itinerary";
$run1=mysql_query($SQL1,$con) or die ("SQL Error");
$nor1=mysql_num_rows($run1);
while($rec=mysql_fetch_array($run1))
{
while ($rec = $distUsr)
{
echo "<option id='options'>$rec<br></option>";
}
}
?>