Keywords |
---|
All posts by Administrator
Difference between render and partial
$this->render ('topnav.phtml')
$this->partial('topnav.phtml')
Render has the same variable scope as the script from which it is being called. Therefore, we must be careful of variable clashes. while partial helper render a view script within its own scope. There is one downside to partial helper though, it has to clone a lot of objects to get the view into its own scope, which means there is a performance hit while using it.
Copy a field column of one table to another
UPDATE table1
INNER
JOIN table2
ON table2.something = table1.something
SET table2.field2 = table1.user
What is NoSQL? is it substitution of Rational Dabases?
In the end of this article I want you watch this interesting presentation by Brian Aker 🙂