我连接到数据库,一个页面有很多内容所以我只会共享那些在php中没有返回值的部分,但它在MySQL中返回一个值
这是代码;
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
<g inkscape:label="layerA">
<g inkscape:label="layerB"/>
</g>
<g inkscape:label="layerD"/>
</svg>
答案 0 :(得分:0)
将我先分享的代码更改为此,解决了问题。感谢任何试图提供帮助的人。
$query = "SELECT firstname FROM users WHERE id = '17'";
$query_run = mysqli_query($conn, $query);
$row = mysqli_fetch_row($query_run);
echo $row[0];
对connect.inc.php进行了一些位更改,我也在评论中分享了这一点。
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "notsitesi";
$conn = new mysqli($servername, $username, $password, $dbname);
if($conn->connect_error) {
die("Connection failed");
}
?>