what it means: set('uNamePosted', $uName);
Permalink 1 user found helpfulI need a clarification about
set('uNamePosted', $uName);
What it really means that ???
please clear my doubt...
Thanks in advance...
set('uNamePosted', $uName);
This website stores cookies on your computer. These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media. To find out more about the cookies we use, see our Privacy Policy.
set() line passes it back to the view. Whatever we pass as the first parameter to set() automatically becomes a PHP variable in our view, with whatever information we place in the second parameter. This information can be a a simple string, or a complex PHP object, or anything in between.