的下拉菜单中访问

的下拉菜单中访问

我正在开发一个使用php和mysql的网站。
我做了一个表格,为博客添加类别,并将其存储在类别表中。
现在我想在另一种博客形式的下拉菜单中访问这些类别。有人能解决我的问题吗?
以下是表格代码:

 <html>

  <head>
     <title>Create a Blog!</title>
  </head>

 <body>
 <?php
    include_once ('BlogClass.php');
    $j = new Blog();
    $ans = array();
    $ans = $j->DisplayCategories();
 ?>

   <form name="BlogTopic" action="BlogTopicProcess.php" method="post" onSubmit="return validateForm()">
  topic_cat :
      <select name="topic_cat">
         <?php
             for ( $i = 0; $i < count( $ans ); $i++ ) {
         ?>
         <option value="<?php echo($ans[$i]['Category']);?>"><?php echo($ans[$i]   ['Category']);?></option>
         <? php
             }
         ?>
      </select>
      <label><strong>topic_id:</strong></label>
      <input name="topic_id" type="text"/><br>
      <label><strong>topic_subject:</strong></label>
      <input name="topic_subject" type="text"/><br>

      <label><strong>topic_date:</strong></label>
      <input name="topic_date" type="text"/><br>

      <label><strong>topic_by:</strong></label>
      <input name="topic_by" type="text"/><br>

      <input type="checkbox" name="terms" />
      I agree to the <a href="#">terms &amp; conditions</a>  <br>
      <input type="submit" value="Create Topic" /><br>
 </form>

 </body>
</html>

函数DisplayCategory()
public function DisplayCategory() {
    $connection=$this->Con->connectDb();
    $data=array();
    $sql="select * from categories";
    $query=mysql_query($sql);
    $numrows=mysql_num_rows($query);
    if ($numrows!=0) {
        while ($a=mysql_fetch_array($query))
            $data[]=$a;
    }
    mysql_close($connection);
    return $data;
}

最佳答案

我不知道你的$ans值多少钱,但这可能会帮助你

<select name='topic_cat'>
   <?php foreach ( $ans as $a ) { ?>
      <option value="<?php echo $a['key']?>"> <?php echo $a['value']; ?> </option>
   <?php } ?>
</select>

10-06 12:10