mysqli_fetch_array()期望参数1为mysqli_result,null为& mysqli_query()需要至少2个参数,给定1个

时间:2016-08-01 18:03:54

标签: php html mysql

我正在使用mysqli,在此代码错误发生在while循环和上面的行中,我无法从其他相关解决方案中解决,我不知道该怎么做,它基本上是向下搜索菜单。 / p>

<div>
        <!--/*<input type="text" class="input_search"  placeholder="tacos, cheap dinner, Max's "/>*/-->
        <select id="city" name="cty" onchange="ct()" style="width:120px; height:40px;">
        <option>Select City</option>
        <?php 
        $sql=mysql_query("select * from seek_city");
        while($row=mysql_fetch_array($sql))
        {

        <?
        <option value="<?php echo $row['city_id']?>"><?php echo $row['city_name']?></option>
        <?php
        }<?
        </select>



            </td>
            <td width="10"> </td>
            <td><div>  Location </div></td>
        <td>
                </div>

0 个答案:

没有答案