It has a template that loads all the friends of userID 666. It uses a connect.php and a friendship.php
18 lines
346 B
PHP
18 lines
346 B
PHP
<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>
|