要使用PHP来创建一个查看发票的页面,你需要遵循以下步骤:
invoices
的数据库,其中有一个名为invoice_details
的表,包含id
、customer_name
、amount
等字段。<?php
$servername = "localhost";
$username = "your_username";
$password = "your_password";
$dbname = "your_dbname";
// 创建连接
$conn = new mysqli($servername, $username, $password, $dbname);
// 检查连接
if ($conn->connect_error) {
die("连接失败: " . $conn->connect_error);
}
?>
invoice_details
表中获取特定发票的信息。这里假设你想要根据发票ID获取信息。<?php
$invoice_id = $_GET['id']; // 从URL参数中获取发票ID
$sql = "SELECT * FROM invoice_details WHERE id = " . $invoice_id;
$result = $conn->query($sql);
?>
$result
变量。现在你需要遍历这个结果集并显示发票的详细信息。<?php
if ($result->num_rows > 0) {
// 输出每行数据
while($row = $result->fetch_assoc()) {
echo "ID: " . $row["id"]. " - 客户名: " . $row["customer_name"]. " - 金额: " . $row["amount"]. "<br>";
}
} else {
echo "0 结果";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>查看发票</title>
</head>
<body>
<h1>查看发票</h1>
<?php
// 这里插入第2步和第3步的PHP代码
?>
</body>
</html>
include
或require
语句将它们包含在一个单独的文件中,以便于管理和维护。例如,你可以创建一个名为invoice_details.php
的文件,其中包含以下代码:
<?php
// 这里插入第1步的PHP代码
?>
<?php
// 这里插入第2步的PHP代码
?>
<?php
// 这里插入第3步的PHP代码
?>
然后,在主HTML文件中,你可以使用include
语句将invoice_details.php
文件嵌入到模板中:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>查看发票</title>
</head>
<body>
<h1>查看发票</h1>
<?php include 'invoice_details.php'; ?>
</body>
</html>
现在,当用户访问一个包含发票ID参数的URL时(例如:viewinvoice.php?id=1
),他们将看到一个包含所选发票详细信息的页面。