为什么我的视图页面没有显示数据库mysql中的数据

时间:2014-04-23 02:01:58

标签: php

我已经成功创建了登录和注销页面..当用户使用他们的用户名和密码登录成功时,他们将进入视图页面,但不幸的是视图页面没有显示数据库mysql中的数据。编码没有出错......

这是我的viewpage.php

<html>    
<?php
include("authenticationStaff.php");
include ("dbase.php");
?>
<body>
 <table width="869" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
       <td width="645" height="50" align="left" valign="middle"><strong>Welcome ,&nbsp; You log in as &nbsp; &nbsp;<?php echo $_SESSION['SESS_STAFF_NAME'];?> 
       <td width="377" align="right" valign="middle"><strong><a href="logout.html" title="Logout">Log Out</a></strong></td>
   </tr>
   </table>
   </center>
   <?php
   $query= "SELECT s.staff_id,s.staff_name,i.project_name,i.location,i.cost,i.pic,i.detail,i.file_name,i.file_type,i.file_size,i.file_content,i.staff_id
FROM staff s
JOIN inter1 i 
on(s.staff_id = i.staff_id)
WHERE i.staff_id = '".$_SESSION['SESS_ID']."'";
$result = mysql_query($query);
?>
   <tr>
      <td colspan="4" align="left" valign="top" class="horizon_divider"><p>&nbsp;</p>

       </td><td width="750" valign="top"><div align="center">
         <h3>DATA</h3>
         <table width="836" border="2" align="center" style= "background-color: #FFFFFF; color: #000000; margin: 0 auto;" >
  <thead>
    <tr bgcolor="#FFFFFF">
      <th width="142">PROJECT NAME</th>
      <th width="114">LOCATON</th>
      <th width="94">COST</th>
      <th width="151">PERSON IN CHARGE</th>
      <th width="187">DETAIL</th>
      <th width="187">ATTACHMENT</th>
      <th width="88">ACTION</th>
    </tr>
  </thead>
  <tbody>
    <?php
          while( $row = mysql_fetch_assoc( $result ) ){
            echo
            "<tr>
              <td>{$row['project_name']}</td>
              <td>{$row['location']}</td>
              <td>{$row['cost']}</td>
              <td>{$row['pic']}</td> 
              <td>{$row['detail']}</td> 
              <td></td> 

             <td><a href='editStaff.php?id={$row ['staff_id']}'>ADD NEW RECORD</a>||<a href='deleteStaff.php?id={$row ['staff_id']}'>DELETE</a></td> </tr> ";

          }
        ?>

  </tbody>
</table>
        </table>
        </body>
</html>

有人可以看到我出错的地方吗?如果您需要更多信息,请告诉我。感谢。

0 个答案:

没有答案