This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fonction | |
def amis(bdd,nom,d): | |
result = [] | |
if d == 0: | |
result.append(nom) | |
else: | |
for utilisateur in bdd[nom]: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Mettre ce fichier sur ton site (via un FTP évidemment ;) ). | |
* Il suffit ensuite d'inclure ce dernier en faisant un include_once comme ceci: | |
<?php | |
require_once onlinePlayer.php; | |
?> | |
* La liste des joueurs et le nombre de joueurs connectés sera affichée à |