0

我有一张有 4 列(id、name、surname、url)的表。我想为每一行创建唯一的子页面。(example.com/id?=444)。因此,如果我访问 example.com?id=444,我将看到 id 为 444 的行中的数据。

现在我有表格,您可以在其中将数据添加到数据库中:

 <form action="motogp.php" method="POST"> <input type="text"
 name="name" placeholder="Ime"> <input type="text" name="surname"
 placeholder="Priimek"> <input type="text" name="url" placeholder="URL
 do slike"> <button type="reset" class="ui button">Počisti</button>
 <button type="submit" class="ui positive button">Pošlji</button>
 </form>

motogp.php 页面代码:

$sql="INSERT INTO person (name, surname, url)
VALUES
('$_POST[name]','$_POST[sruname]','$_POST[url]')";

if (!mysqli_query($con,$sql))
  {
  die('Error: ' . mysqli_error($con));
  }


$result = mysqli_query($con,"SELECT * FROM person ORDER BY id DESC LIMIT 1");


while($row = mysqli_fetch_array($result))
  {
  echo "<h2>VIDEO: " . $row['name'] . . $row['surname'] . " z drugo zaporedno zmago zmanjšal zaostanek za Marquezom</h2>";
  echo "<img src='images/avoter.png'>";
  echo "<img src='" .  $row['url'] ."'>";

}

现在它只给了我 example.com/motogp.php 而不是 example.com/?id=444。

4

1 回答 1

1

您需要使用 $_GET[''] 而不是 $_POST['']。

GET 通过 URL 以由以下人员捐赠的格式发送所有数据

website.com/page.php?v=d&v=d

其中 v 是一个变量,d 是分配给它的某种数据。如果您想要动态创建的页面。您需要通过 GET 发送

因此,如果您想要的页面是 website.com/page.php?id=4 为了从 id 4 的数据库条目中获取数据,您需要执行类似的操作

<?php
$id = $_GET['id']; //in the case of the URL above, it will equal four
?>

然后,您获取该 $id 变量并通过查询获取您需要的特定数据来运行它。

如果您想创建一个通过 GET 而不是 POST 发送数据的表单,您只需将它说 method="post" 的部分更改为 method="get"

我希望这有帮助!

编辑:

假设您有几个链接:

website.com/page.php?id=1
website.com/page.php?id=2
website.com/page.php?id=3

在 page.php 的代码上,您可以使用以下代码查看“id”等于什么:

$var = $_GET['id'];

这将从 url 中获取 id 的值。

So for website.com/page.php?id=1 $var is equal to 1,
for website.com/page.php?id=2 $var is equal to 2,
for website.com/page.php?id=3 $var is equal to 3,
于 2013-09-20T22:19:56.280 回答