x00
MVPx00 MVP
Reactions
-
Re: Creating db but I am cocking something up
quit cussing you sl__________________g! (View Post)1 -
Re: Quick and easy way to retrieve user name via the id?
??? the query is made through the model anyway. You can use GetID from static: $User = Gdn::UserModel()->GetID($ID); (View Post)1 -
Re: how to add meta tag for custom pages (title , description, keywords)
$this->Head->AddTag('meta',array('name'=>'keywords','content'=>"some,keywords")); I'll let you figure out the rest, becuase I think … (View Post)1 -
Re: Quick and easy way to retrieve user name via the id?
This is not an efficient way of doing things. You are making one query, per person. Fortunately the user model already has a way of getting all the user in a model, and zipping the result set. This i… (View Post)1 -
Re: Quick and easy way to retrieve user name via the id?
Yep that is becuase you can join muliple user meta say you had $Project->InsertUserID and $Project->MentorUserID for example you would put: Gdn::UserModel()->JoinUsers($this->Projects,arr… (View Post)1
