Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Import phpBB posts into bbPress?

915     function phpbb_username($id) {
916 global $phpbb_tables;
917 $sql = "SELECT username FROM " . $phpbb_tables['users'] . " WHERE user_id=$id";
918 $result = mysql_query($sql);
919 if ($row = mysql_fetch_object($result)){
920 return $row->username;
921 } else {
922 return false;
923 }
924 }

What am I missing??

Skip to toolbar