php中的动态页面/菜单

时间:2017-04-06 07:08:13

标签: php dynamic-pages

您好我正在开发某种CMS页面,我希望在if (data[i].userdetails.length) { $("#broadcastedmessagelist").append('<tr>' + '<td style="text-align: center;">' + data[i].userdetails[0]["role"] + '</td>' ); } 页面上显示所有可用文章的列表,例如/index.php
我不知道如何做到这一点。
感谢任何帮助。

这是我的/index.php?p=Art1代码:

index.php

<html> <head> <link rel="stylesheet" href="css/login-layout.css"> </head> <body> <div class="dialog-box"> <h2 style="font-size: 200%;margin-bottom: 0;">Pagini Noi</h2> <h3 style="text-align: right; font-size:100%;margin-top: 0;"><a href="login.php">Logheazate</a> pentru a edita paginile</h3> <div class="pages"> <!-- Pagini \/ --> <?php include('config.php'); ?> </div> </div> </body> </html> 包含与数据库的连接Config.php是我使用的变量名。

1 个答案:

答案 0 :(得分:1)

/index.php?p=Art1方法实际上是您需要获取的$ _GET。在您当前的示例中,您将执行以下操作:

$p = $_GET['p'];

如果你以后回复:

echo $p;

你会得到

Art1

但是在此之前,您应该向我们提供一些您希望这样做的数据库查询示例,以便我们向您展示如何将变量$ p传递给查询,然后从数据库中的表中选择所需的行。对于简单的mysql查询,您可以在此处查看:https://www.w3schools.com/php/func_mysqli_query.asp

警告:请务必使用mysqli_real_escape_string($ p)以获得对SQL注入的最低保护。