我想从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"
?
2条答案
按热度按时间uklbhaso1#
您可以在php ie中回显html标记。
或者
8cdiaqws2#
你几乎完成了代码。您只需在此处添加值:
上面将生成几行按钮。如果你需要的话。
:)