diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-16 00:50:36 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-16 00:54:38 -0400 |
commit | fda3b17b032b67e0ccfbaa3aa6ec6e4ee5a17f70 (patch) | |
tree | 5d4fbd461bc1fb2716f0fa9fa6c1458cf6f816f8 /views/friends/index.html.php | |
parent | a277c978e66c970231b3cf987d220f3476fe456e (diff) | |
download | otakuhub-fda3b17b032b67e0ccfbaa3aa6ec6e4ee5a17f70.tar.xz |
Implemented mySQL based friending
Diffstat (limited to 'views/friends/index.html.php')
-rw-r--r-- | views/friends/index.html.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/views/friends/index.html.php b/views/friends/index.html.php new file mode 100644 index 0000000..41fbeb7 --- /dev/null +++ b/views/friends/index.html.php @@ -0,0 +1,7 @@ +<?php + +foreach($user->myFriends() as $friend) { +echo $friend->username; +} + +?>
\ No newline at end of file |