溫馨提示×

php table的樣式如何自定義

PHP
小樊
83
2024-09-09 02:10:51
欄目: 編程語言

要自定義 PHP 表格的樣式,您需要使用 HTML 和 CSS。以下是一個(gè)簡單的示例,說明如何創(chuàng)建一個(gè)帶有自定義樣式的 PHP 表格:

  1. 首先,創(chuàng)建一個(gè)包含數(shù)據(jù)的 PHP 數(shù)組:
<?php
$data = [
    ['name' => 'John', 'age' => 28, 'city' => 'New York'],
    ['name' => 'Jane', 'age' => 24, 'city' => 'San Francisco'],
    ['name' => 'Mike', 'age' => 35, 'city' => 'Los Angeles'],
];
?>
  1. 接下來,使用 HTML 和 PHP 輸出表格:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Custom PHP Table</title>
    <style>
        /* 自定義表格樣式 */
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
    </style>
</head>
<body>
    <table>
        <thead>
            <tr>
                <th>Name</th>
                <th>Age</th>
                <th>City</th>
            </tr>
        </thead>
        <tbody>
            <?php foreach ($data as $row): ?>
                <tr>
                    <td><?php echo htmlspecialchars($row['name']); ?></td>
                    <td><?php echo htmlspecialchars($row['age']); ?></td>
                    <td><?php echo htmlspecialchars($row['city']); ?></td>
                </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
</body>
</html>

在上面的示例中,我們首先使用 HTML 和 CSS 定義了表格的自定義樣式。然后,我們使用 PHP 輸出表格的數(shù)據(jù)。htmlspecialchars() 函數(shù)用于防止 XSS 攻擊,確保數(shù)據(jù)的安全性。

0