AJAX 调用 php 并填充表格

发布于 2024-12-22 03:30:27 字数 346 浏览 0 评论 0原文

我在数据库中有一个表用户。

它包含字段:id,username,password,email,phone

我想从 php 进行 AJAX 调用来填充表格。

<table>
    <thead>
        <tr>Nane</tr>
        <tr>Email</tr>
        <tr>Phone</tr>
    </thead>
    <tbody>
    </tbody>
</table>

I have a table user in database.

It contains the fields: id,username,password,email,phone

I want to make an AJAX call from php to fill a table.

<table>
    <thead>
        <tr>Nane</tr>
        <tr>Email</tr>
        <tr>Phone</tr>
    </thead>
    <tbody>
    </tbody>
</table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城 2024-12-29 03:30:27

以下是帮助您入门的步骤,对于这样的问题,有足够简单的信息可以找到您想要的内容。

  1. 搜索 Stack Overflow 用于连接 MYSQL 数据库并从中检索数据(也搜索“PHP SQL select”)。
  2. 以您想要的格式输出数据。 HTML?
  3. 使用 jQuery Javascript 库。使用内置的 ajax 函数来请求脚本: $('tbody').load('script.php');

Here's the steps to get you started, and with a question like this there is ample information that is simple enough to find what your after.

  1. search Stack Overflow for connecting to and retrieving data from MYSQL database (also search "PHP SQL select").
  2. output data in your desired format. HTML?
  3. Use jQuery Javascript library. Use inbuilt ajax functions like to request your script: $('tbody').load('script.php');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文