-2

このダムコードのエラーは何か教えてもらえますか?エラーについて検索に夢中になりましたが、成功せずにエラーは、テーブルからデータを取得できないということです。なぜそれが起こっているのですか?? 助けてください

index.php

<html>
<head>
</head>
<body>
<form action="index.php" method="post">
<label for="searchByCountry">By Country</label>
            <select name="searchByCountry" id="searchByCountry">
             <option id="0">--select your country--</option>
             <?php
                 require_once('connfor_lamelchameltest.php'); 



               $getallCountries = mysql_query("SELECT country_name FROM country") or die("could not search for countries");
         if(mysql_num_rows($getallCountries) > 0) {

               while($viewallCountries = mysql_fetch_array($getallCountries)){

                ?>

               <option id="<?php echo $viewallCountries['country_name']; ?> "></option>
                 <?php } ?>
               <?php } ?>

            </select>
 </form>
 </body>
 </html>
4

1 に答える 1

0
<html>
<head>
</head>
<body>
<form action="index.php" method="post">
<label for="searchByCountry">By Country</label>
            <select name="searchByCountry" id="searchByCountry">
             <option id="0">--select your country--</option>
             <?php
                 require_once('connfor_lamelchameltest.php'); 



               $getallCountries = mysql_query("SELECT country_name FROM country") or die("could not search for countries");
         if(mysql_num_rows($getallCountries) > 0) {

               while($viewallCountries = mysql_fetch_array($getallCountries)){

                ?>

               <option value="<?php echo $viewallCountries['country_name']; ?> ">
<?php echo $viewallCountries['country_name']; ?>
</option>
                 <?php } ?>
               <?php } ?>

            </select>
 </form>
 </body>
 </html>
于 2013-02-27T13:40:44.977 に答える