php表显示数据,编辑,删除

时间:2012-08-04 22:40:40

标签: php string

我花了一整天的时间来尝试使用此代码段:

    <?php
            include("conn.php");

$result = mysql_query("SELECT * FROM users");
  echo "<table border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" id=\"product-       table\">
  <tr>
  <th class=\"table-header-check\"><a id=\"toggle-all\" ></a> </th>
  <th class=\"table-header-repeat line-left\" ><a href=\"\">User ID</a></th>
  <th class=\"table-header-repeat line-left\"><a href=\"\"> Username</a></th>
  <th class=\"table-header-repeat line-left\"><a href=\"\">Firstname</a></th>
  <th class=\"table-header-repeat line-left\"><a href=\"\">Lastname</a></th>
  <th class=\"table-header-repeat line-left\"><a href=\"\">Email</a></th>
  <th class=\"table-header-repeat line-left\"><a href=\"\">Registration Date</a></th>
  <th class=\"table-header-options line-left\"><a href=\"\">Options</a></th>
   </tr>";
  while ($row = mysql_fetch_array($result)) {

   echo "<tr>";
   echo "<td>"."<input  type=\"checkbox\"/></td>";
    echo "<td>" . $row['user_id'] . "</td> ";
    echo "<td>" . $row['username'] . "</td>";
    echo "<td>" . $row['first_name'] . "</td>";
    echo "<td>" . $row['last_name'] . "</td>";
     echo "<td>" . $row['email'] . "</td>";
 echo "<td>" . $row['registration_date'] . "</td>";
 echo "<td class=\"options-width\">".
                "<a href=\"\" title=\"Edit\" class=\"icon-1 info-tooltip\">              </a>".
                "><a href="delete.php?id=' . $row['id'] . '"class=\"icon-2 info-tooltip\"></a>".
                "<a href=\"\" title=\"Save\" class=\"icon-5**strong text**info-tooltip\">       </a>".
                "
                </td>";
  echo "</tr>";
  }


     ?>

我想要做的是将我的用户拉入html表,然后制作它以便我可以从url字符串ex中编辑/删除它们。

2 个答案:

答案 0 :(得分:1)

不确定这是否是一个答案,但它更清晰,可能不太容易出现问题:

<?php
    include("conn.php");
    $result = mysql_query("SELECT * FROM users");
    $rows   = mysql_fetch_array($result);
?>
<table border="0" width="100%" cellpadding="0" cellspacing="0" id="product-table">
    <tr>
        <th class="table-header-check"><a id="toggle-all"></a> </th>
        <th class="table-header-repeat line-left"><a href="#">User ID</a></th>
        <th class="table-header-repeat line-left"><a href="#">Username</a></th>
        <th class="table-header-repeat line-left"><a href="#">Firstname</a></th>
        <th class="table-header-repeat line-left"><a href="#">Lastname</a></th>
        <th class="table-header-repeat line-left"><a href="#">Email</a></th>
        <th class="table-header-repeat line-left"><a href="#">Registration Date</a></th>
        <th class="table-header-options line-left"><a href="#">Options</a></th>
    </tr>
    <?php foreach($rows as $row) { ?>
    <tr>
        <td><input type="checkbox" /></td>
        <td><?php echo $row['user_id']; ?></td>
        <td><?php echo $row['username']; ?></td>
        <td><?php echo $row['first_name']; ?></td>
        <td><?php echo $row['last_name']; ?></td>
        <td><?php echo $row['email']; ?></td>
        <td><?php echo $row['registration_date']; ?></td>
        <td class="options-width">
            <a href="#" title="Edit" class="icon-1 info-tooltip"></a>
            <a href="delete.php?id=<?php echo $row['id']; ?>" class="icon-2 info-tooltip"></a>
            <a href="#" title="Save" class="icon-5 strong-text info-tooltip"></a>
        </td>
    </tr>
    <?php } ?>
</table>

希望有所帮助:)

答案 1 :(得分:0)

在此行的最后一次回音之前改变

            echo '<td class="options-width">'.
            '<a href="" title="Edit" class="icon-1 info-tooltip"> </a>'.
            '      <a href="delete.php?id=' . $row['id'] . ' " class="icon-2 info-tooltip"></a>'.
            '<a href="" title="Save" class="icon-5**strong text**info-tooltip">       </a>'.
            '</td>';

引号有问题(嵌套的“和”)