Begin with the connection between php and mysql.

It has a template that loads all the friends of userID 666.
It uses a connect.php and a friendship.php
This commit is contained in:
Lars van Hijfte
2017-01-17 12:48:01 +01:00
parent ff2927755d
commit 10d3e177ae
6 changed files with 67 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
<html>
<head>
</head>
<body>
<?php
// database gegevens zijn elders opgeslagen
include_once("../queries/connect.php");
include_once("../queries/friendship.php");
$friends = selectAllFriends($db, 666);
while($friend = $friends->fetch(PDO::FETCH_ASSOC)) {
echo $friend['username'].' '.$friend['onlinestatus'] . "<br />";
}
?>
</body>
</html>