Update 01.php

This commit is contained in:
RobinNixon
2021-02-08 11:10:44 +00:00
parent 2f71a693f0
commit 826dfe8c5b
+2 -2
View File
@@ -61,9 +61,9 @@
$result = queryMysql("SELECT * FROM profiles WHERE user='$user'");
if ($result->num_rows)
if ($result->rowCount())
{
$row = $result->fetch_array(MYSQLI_ASSOC);
$row = $result->fetch();
echo stripslashes($row['text']) . "<br style='clear:left;'><br>";
}
else echo "<p>Nothing to see here, yet</p><br>";