如何使用php将sqlselect语句链接到html按钮

jvidinwx  于 2021-06-19  发布在  Mysql
关注(0)|答案(2)|浏览(286)

我已经用php连接到mysql数据库。这个数据库是关于书籍的,它有不同的列,如id、title、author和price。我现在正在尝试创建“查看表”、“按标题查看”和“按作者查看”的链接,以便用户可以使用这些链接分别查看我的表的内容。
我已经创建了三个按钮,但是现在我不知道如何使它们分别显示列。下面是我的php代码:

<!DOCTYPE html>
<html>
<head>
    <title>Books</title>
    <link rel="stylesheet" type="text/css" href="bookstyle.css">
</head>
<body>
<button>View Table</button>
<button>View by Title</button>
<button>View by Author</button>

<table>
    <tr>
        <th>Id</th>
        <th>Title</th>
        <th>Author</th>
        <th>Price</th>
    </tr>
<?php
$conn = mysqli_connect("localhost", "root", "", "my_book_collection");

// Check connection, if failed show error
if ($conn-> connect_error) {
    die("Connection failed:". $conn-> connect_error);
}
$sql = "SELECT id, title, author, price from books";
$result = $conn -> query($sql);

if ($result -> num_rows > 0){
// Output data for each row
    while ($row = $result -> fetch_assoc()){
        echo "<tr><td>". $row["id"]. "</td><td>". $row["title"]. "</td><td>". $row["author"]. "</td><td>". $row["price"]. "</td></tr>";
    }
echo "</table>";
}
else {
    echo "0 results";
}$conn-> close();
?>

</table>
</body>
</html>
vwhgwdsa

vwhgwdsa1#

您需要告诉您的sql语句按哪个列排序。你可以通过链接传递这个。如 <th><a href="?order=author">Author</a></th> 然后在sql中更改为 'SELECT id, title, author, price FROM books ORDER BY '.$_GET['order'].' ASC' 但在实现此功能之前,请仔细阅读sql注入攻击并修改代码以控制传递给sql的值。
以下是基本信息:

if ($_GET['order'] == 'author') $order = 'author';
if ($_GET['title'] == 'title') $order = 'title';
etc.

变量只是需要一些清洁。
然后将sql语句更改为:

'SELECT id, title, author, price FROM books ORDER BY '.$order.' ASC'
pbpqsu0x

pbpqsu0x2#

我自己想出来的。这可能不是最好的方法,但我所做的是创建两个独立的.php文件,一个用于作者,一个用于标题。我删除了与作者或标题无关的代码(例如:id和price)。所以基本上,我只是为每个表创建了一个新表,然后分别创建了访问每个表的链接。每个.php文件有3个链接“视图表”“视图作者”“视图标题”。

相关问题