1

这是我的编码,我是 php 新手,我经常在那里使用 codigneter,我用它在模型中编写查询,但我不知道在哪里编写查询。此代码生成的错误

注意:未定义的偏移量:C:\wamp\ 中的 0

并且无法从数据库中获取数据

                  <div class="table">

             <table cellspacing="0" cellpadding="0">
            <thead>
             <tr>
                <th width="50" class="first">Id</th>
                <th width="117">Name</th>
                <th width="145">E.mail</th>
                <th width="63">Phone</th>
                <th width="145">Address</th>
                <th width="145">Payer Email</th>
                <th width="45">Amount</th>
                <th width="45" class="last">Status</th>
            </tr>
            </thead>
            <tbody class="table_body">
              <?php  
              $result = mysql_query("SELECT * FROM myorders ");
             $fields = mysql_fetch_assoc( $result );
               if(isset($fields)){
        if(count($fields)>0){
      for($j=0; $j<count($fields); $j++){ ?>
    <tr>
        <td class="first style2"><?php echo $fields[$j]->id?></td>
        <td><?php echo $fields[$j]->name?></td>
        <td><?php echo $fields[$j]->email?></td>
        <td><?php echo $fields[$j]->phone?></td>
        <td><?php echo $fields[$j]->address?></td>
        <td><?php echo $fields[$j]->payer_email?></td>
        <td><?php echo $fields[$j]->amount?></td>
        <td><?php echo $fields[$j]->status?></td>

        </tr>
    <?php } 
        }
  }
?>  
        </tbody></table>
        </div>
4

2 回答 2

1

在从数据库中检索数据之前,您需要连接到它,这可以通过不同的方式完成,例如我将使用 mysqli new

$mysqli = new mysqli("localhost", "database username", "database user password");
mysqli_query($mysqli, "query here");

我在此示例中使用 mysqli,因为 mysql 命令已被弃用,并将在下一版本的 PHP 中删除。

于 2013-09-08T14:33:44.787 回答
0

您正在使用mysql_fetch_assoc()which 返回一个关联数组

$fields['id'] 

而且您只使用它一次而不是循环,因此它永远不会返回超过 1 行(Returns an associative array that corresponds to the fetched row and moves the internal data pointer ahead

$fields = mysql_fetch_assoc( $result );

但是您正在尝试将数组作为对象访问

$fields[$j]->id

所以你需要使用mysql_fetch_object()而不是mysql_fetch_assoc()


与其他评论/答案一样,您应该切换到mysqliPDO- http://php.net/manual/en/mysqlinfo.api.choosing.php

于 2013-09-08T18:32:27.193 回答