0

我对 php 和 mysqli 非常陌生,并找到了一个很棒的教程,但我需要一些帮助。

我希望一行可以链接并将其发送到另一个名为 single.php?id=ROWID 的页面,这样它将显示单个条目

这就是我到目前为止所得到的。

    <html>
    <head>
        <title>MySQLi Tutorial</title>

    </head>
<body>

<?php
//include database connection
include 'db_connect.php';

$action = isset($_GET['action']) ? $_GET['action'] : "";

if($action=='delete'){ //if the user clicked ok, run our delete query

        $query = "DELETE FROM users WHERE id = ".$mysqli->real_escape_string($_GET['id'])."";
        if( $mysqli->query($query) ){
                echo "User was deleted.";
        }else{
                echo "Database Error: Unable to delete record.";
        }

}

$query = "select * from users";
$result = $mysqli->query( $query );

$num_results = $result->num_rows;

echo "<div><a href='add.php'>Create New Record</a></div>";

if( $num_results ){

    echo "<table border='1'>";//start table
        //creating our table heading
        echo "<tr>";
                echo "<th><a href=\"single.php?id={$id}\">Firstname</></th>";
                echo "<th>Lastname</th>";
                echo "<th>Username</th>";
                echo "<th>Action</th>";
        echo "</tr>";

        //loop to show each records
        while( $row = $result->fetch_assoc() ){
            //extract row
            //this will make $row['firstname'] to
            //just $firstname only
            extract($row);

            //creating new table row per record
            echo "<tr>";
                echo "<td>{$firstname}</td>";
                echo "<td>{$lastname}</td>";
                echo "<td>{$username}</td>";
                                echo "<td>";
                                        echo "<a href='edit.php?id={$id}'>Edit</a>";
                                        echo " / ";
                                        echo "<a href='#' onclick='delete_user( {$id} );'>Delete</a>";
                                echo "</td>";
            echo "</tr>";
        }

        echo "</table>";//end table

}else{
        //if table is empty
        echo "No records found.";
}

//disconnect from database
$result->free();
$mysqli->close();

?>

<script type='text/javascript'>

    function delete_user( id ){
        //this script helps us to

        var answer = confirm('Are you sure?');
        if ( answer ){ //if user clicked ok
            //redirect to url with action as delete and id to the record to be deleted
            window.location = 'index.php?action=delete&id=' + id;
        } 
    }
</script>

</body>
</html>

我想我会在 url 中发送行 id 是对的吗?

echo "<th><a href=\"single.php?id={$id}\">Firstname</></th>";

但我遇到了 single.php 的问题,我必须放什么代码来显示单个条目?

我已经有一段时间了,但附近没有,所以我删除了代码并吞下我的骄傲寻求帮助:/

提前致谢

4

3 回答 3

1

谢谢你的有趣问题。
首先,让我告诉您,虽然您使用的是一个外观现代的数据库访问库,但您使用它的方式就像猛犸象化石一样古老。

需要考虑的几件事

  • 切勿按原样使用 mysqli,而只能以某些更高级别的抽象库的形式使用。
  • 切勿在应用程序代码中使用 real_escape_string,而仅使用准备好的语句。
  • 切勿将您的数据库代码与 HTML 输出混合。先获取数据,然后开始输出。
  • 切勿使用 GET 方法修改数据。

这是基于上述原则的示例。它执行所有基本的 CRUD 操作:

<?  
include 'safemysql.class.php'; // a library 
$db    = new SafeMysql();
$table = "test"; 

if($_SERVER['REQUEST_METHOD']=='POST') {
  if (isset($_POST['delete'])) {
    $db->query("DELETE FROM ?n WHERE id=?i",$table,$_POST['delete']);
  } elseif ($_POST['id']) { 
    $db->query("UPDATE ?n SET name=?s WHERE id=?i",$table,$_POST['name'],$_POST['id']);
  } else { 
    $db->query("INSERT INTO ?n SET name=?s",$table,$_POST['name']);
  } 
  header("Location: http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);  
  exit;  
}  
if (!isset($_GET['id'])) {
  $LIST = $db->getAll("SELECT * FROM ?n",$table);
  include 'list.php'; 
} else {
  if ($_GET['id']) {
    $row = $db->getRow("SELECT * FROM ?n WHERE id=?i", $table, $_GET['id']);
    foreach ($row as $k => $v) $row[$k]=htmlspecialchars($v); 
  } else { 
    $row['name']=''; 
    $row['id']=0; 
  } 
  include 'form.php'; 
}

它使用模板来显示数据:

列表.php

<a href="?id=0">Add item</a>
<? foreach ($LIST as $row): ?>
<li><a href="?id=<?=$row['id']?>"><?=$row['name']?></a>
<? endforeach ?>

和 form.php

<form method="POST">
<input type="text" name="name" value="<?=$row['name']?>"><br>
<input type="hidden" name="id" value="<?=$row['id']?>">
<input type="submit"><br>
<a href="?">Return to the list</a>
</form>
<? if ($row['id']):?>
<div align=right>
<form method="POST">
<input type="hidden" name="delete" value="<?=$row['id']?>">
<input type="submit" value="Удалить"><br>
</form>
</div>
<?endif?>

这里是展示的部分。

  if ($_GET['id']) {
    $row = $db->getRow("SELECT * FROM ?n WHERE id=?i", $table, $_GET['id']);
    foreach ($row as $k => $v) $row[$k]=htmlspecialchars($v); 
  } else { 
    $row['name']=''; 
    $row['id']=0; 
  } 
  include 'form.php'; 

如果您不想显示表单 - 创建另一个模板single.php,使用您希望的任何标记调用

于 2013-08-17T12:03:12.227 回答
0

单.php

如果你愿意,我使用 PDO,你也可以使用 MySQLi 来实现。

<?php
    include("db_connect.php"); // database configuration file
    if(isset($_GET['id'])
    {
        $id = (int) $_GET['id'];
        $sql = "SELECT * FROM `users` WHERE id=?";
        $query = $conn->prepare($sql); // $conn is PDO object yours can be different
        $query->bindValue(1,$id);
        $query->execute();
        if($query){
            $row = $query->fetch(); // 
        }else{ 
            echo "Error with Database";
        }
    }        
    else // Error for the Id selection
    {
        echo("ID is not selected");
    }
?>

没有 while 循环,因为您只需要 1 条记录。$row 变量仅用于测试,因为我不知道数据库中的字段

<table border="1">
    <tr>
        <td>ID</td>
        <td>Firstname</td>
        <td>Lastname</td>
    </tr>
    <tr>
        <td><?php echo $row['id]; ?></td>
        <td><?php echo $row['firstname']; ?></td>
        <td><?php echo $row['lastname']; ?></td>
    </tr>
</table>
于 2013-08-17T15:04:34.173 回答
-1

在你的 single.php

$id=$_GET['id'];
$query="select * from users where id='".$id."'";
于 2013-08-17T11:56:50.880 回答