我想使用html按钮触发功能

时间:2019-07-02 22:29:48

标签: php html mysql xampp

所以我用来自数据库的信息填充html表,并想用一个按钮触发它,但不知道如何。如果有人可以帮助我并且向网站添加一些链接(也向我展示如何),那就太好了。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <div method="GET">
        <table>
            <thead>
                <tr>
                    <th>ID</th>
                    <th>Nombre</th>
                    <th>Usuario</th>
                </tr>
                <?php
                include "php/populate.php";
                ?>

            </thead>
        </table>
        <input type="button" value="button" id="button">
    </div>
</body>
</html>
<?php 
$result = mysqli_query($enlace,"SELECT * FROM tb_personas");

while($row = mysqli_fetch_array($result))
{
    echo "<tr>";
    echo "<td>" . $row['ID'] . "</td>";
    echo "<td>" . $row['txt_nombre'] . "</td>";
    echo "<td>" . $row['txt_usuario'] . "</td>";
    echo "</tr>";
}
echo "</table>";

mysqli_close($enlace);
?>

1 个答案:

答案 0 :(得分:0)

您需要使用jQuery(使用Ajax的最简单方法)

看看关于stackoverflow how to call a php script on a html button click

的问题

另外,您将数据包含在表的标题中,而应该将它们包含在表的正文中。

   <table>
        <thead>
            <tr>
                <th>ID</th>
                <th>Nombre</th>
                <th>Usuario</th>
            </tr>                
        </thead>

        <tbody>
            <?php   include "php/populate.php";       ?>
        </tbody>


    </table>