如何在html按钮中从mysql加载数据?

pdtvr36n  于 2021-06-19  发布在  Mysql
关注(0)|答案(2)|浏览(335)

我想从mysql数据库加载数据,并将此数据库的一个字段放入按钮的文本中:

<?php
  $servername = "localhost";
  $username   = "prova";
  $password   = "";
  $dbname     = "prova";

  // Create connection
  $conn = new mysqli($servername, $username, $password, $dbname);
  // Check connection
  if ($conn->connect_error) {
      die("Connection failed: " . $conn->connect_error);
  }

  $sql    = "SELECT nomeCantiere,codiceCommessa,indirizzoCantiere FROM Cantiere";
  $result = $conn->query($sql);

  if ($result->num_rows > 0) {
      // output data of each row
      while ($row = $result->fetch_assoc()) {
          echo "nomeCantiere: " . $row["nomeCantiere"] . " - codieCommessa: " . $row["codieCommessa"] . " - indirizzoCantiere" . $row["indirizzoCantiere"] . "<br>";
      }
  } else {
      echo "0 results";
  }
  $conn->close();
?>
<input type="button" value="button" />

我是这种编程的初学者。
现在我要做的就是生成一个简单的 "echo" .
如何使用 value="nomeCantiere" ?

uklbhaso

uklbhaso1#

您可以在php ie中回显html标记。

echo "<button>". $row["nomeCantiere"] ."</button>"

或者

echo "<input type='button' value='". $row["nomeCantiere"] ."'/>"
8cdiaqws

8cdiaqws2#

你几乎完成了代码。您只需在此处添加值:

if ($result->num_rows > 0) {
  // output data of each row
  while ($row = $result->fetch_assoc()) {
    //// Look at this line ////
    echo '<input type="button" value="' . $row["nomeCantiere"] . '" />';
  }
} else {
  echo "0 results";
}
$conn->close();

上面将生成几行按钮。如果你需要的话。 :)

相关问题