setHTMLTitle("Online Anzeige");
	$HTML->importSeitenInhalt("pages/HTML/online-anzeige.html");
    $table = '
';
    
    $statement = $RUNTIME['PDO']->prepare("SELECT * FROM Friends WHERE PrincipalID = ? ORDER BY Friend ASC");
    $statement->execute([$_SESSION['UUID']]); 
    while($row = $statement->fetch()) 
    {
        $PrincipalID = explode(";", $row['PrincipalID'])[0];
        $FriendData = explode(";", $row['Friend']);
        $Friend = $FriendData[0];
        $entry = '| '.trim($RUNTIME['OPENSIM']->getUserName($Friend)).' | LÖSCHEN | 
';
        if(count($FriendData) > 1)
        {
            $FriendData[1] = str_replace("http://", "", $FriendData[1]);
            $FriendData[1] = str_replace("https://", "", $FriendData[1]);
            $FriendData[1] = str_replace("/", "", $FriendData[1]);
            $entry = '| '.trim($RUNTIME['OPENSIM']->getUserName($Friend)).' @ '.strtolower($FriendData[1]).' | LÖSCHEN | 
';
        }
        $table = str_replace("%%ENTRY%%", $entry."%%ENTRY%%", $table);
    }
    $table = str_replace("%%ENTRY%%", "", $table);
    $HTML->ReplaceSeitenInhalt("%%ONLINE-LIST%%", $table);
    $HTML->build();
    echo $HTML->ausgabe();
?>