Run Your Set Calls as a Batch
This one comes from Nate. Instead of repetitive $this->set calls, you can set all your variables in one go using the PHP compact function.
$var1 = 'text';
$var2 = 'text';
$var3 = 'text';
$this->set( compact('var1','var2','var3') );
Thanks, Nate.
TIPS, TRICKS & BOOKMARKS
I'm Jonathan Snook and this is my site where I like to write about web design and development. Want to 








Conversation