gpt4 book ai didi

php - 如何在 XAMPP 服务器上使用 php 将 MySQL 数据库连接到 html 页面?

转载 作者:行者123 更新时间:2023-11-29 12:44:59 33 4
gpt4 key购买 nike

嗨,我正在尝试将 MySQL 数据库连接到下面给出的简单 html 代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org
/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form action="result.php" method="POST">
S.No :
<input type="text" name="key">
<input type="submit" value="Search">
</form>
</body>
</html>

此 html 代码将表单输入“key”传递到另一个 php 文件,其代码如下。

<?php

$serial=$POST['key'];

if(!$serial){
echo 'Please go back and enter the correct value';
exit;
}

$db = new mysqli('localhost', 'root', '', 'demo_db', 'tbldem');
if(mysqli_connect_errno()) {
echo 'Connection lost.. please try again later !!';
exit;
}

$query = "select * from tbldem where".$serial."like'%".$serial."%'" ;
$result = $db->query($query);

$num = $result->num_rows;

for($i = 0; $i < $num; $i++) {
$row = $result->fetch_assoc();
echo"<p>Serial : </p>";
echo $row['Index'];
echo"<p>Name : </p>";
echo $row['Name'];
echo "<p>Course : </p>";
echo $row['Course'];
}

$result->free();
$db->close();

?>

现在,当我尝试在浏览器中的表单输入中传递一个值时,我得到一个 php 代码作为结果,而不是数据库中的信息,该信息应该在表单输入中传递值时返回,这下面也给出了(问题)。我正在尝试制作一个使用此功能作为主要工具的项目,因此请尽快提供帮助。

query($query); $num = $result->num_rows;

for($i = 0; $i < $num; $i++) {
$row = result->fetch_assoc(); echo"

Serial :
"; echo $row['Index']; echo"

Name :
"; echo $row['Name']; echo "

Course :
"; echo $row['Course']; } $result->free(); $db->close(); ?>

最佳答案

我在代码中注释了一些错误的行并更改了它们,只需按照它进行即可。

  <?php

$serial=$_POST['key']; // change to $_POST['key'];

if(!$serial){
echo 'Please go back and enter the correct value';
exit;
}

$db = mysqli_connect('localhost','user_name','pass','demo_db'); // dont select your table in this line

mysqli_select_db($con,"tbldem"); // select your table here

if(mysqli_connect_errno()){
echo 'Connection lost.. please try again later !!';
exit;
}


$query = "select * from tbldem where serial LIKE '%$serial%';" ; // change $serial to serial like this line
$result = $db->query($query);

$num = $result->num_rows;

for($i=0;$i<$num;$i++){
$row = $result->fetch_assoc();
echo"<p>Serial : </p>";
echo $row['Index'];
echo"<p>Name : </p>";
echo $row['Name'];
echo "<p>Course : </p>";
echo $row['Course'];
}

$result->free();
$db->close();

?>

关于php - 如何在 XAMPP 服务器上使用 php 将 MySQL 数据库连接到 html 页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25578646/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com