【发布时间】:2020-09-03 01:39:44
【问题描述】:
我想要做的是,在 crud.php 文件中创建一个函数,该函数将从数据库中获取数据。之后,我试图在 index.php 文件中调用该函数。
我收到此错误:
**注意:未定义变量:第 11 行 C:\xampp\htdocs\shop\index.php 中的数据
警告:在第 11 行的 C:\xampp\htdocs\shop\index.php 中为 foreach() 提供的参数无效**
crud.php 文件:
<?php
function getResults($sql){
$server = "localhost";
$user = "root";
$pass = "";
$db = "cms";
$conn = mysqli_connect($server, $user, $pass, $db);
if (!$conn) {
die("connection Failed:".mysqli_connect_error());
}
$result = mysqli_query($conn,$sql);
if (mysqli_num_rows($result)>0) {
while ($row = mysqli_fetch_assoc($result)) {
$data = $row;
}
}
return $data;
}
?>
index.php 文件:
<?php
include_once ('inc/crud.php');
$sql = "SELECT * from blog";
getResults($sql);
foreach ($data as $x => $xvalue) {
echo "Key: ". $x."<br>";
echo "Value: ". $xvalue."<br>";
}
?>
【问题讨论】: