Posted by scotti3g
http://content.mycareer.com.au/salary-centre/it-telecommunications/-/australia
Posted by scotti3g
http://content.mycareer.com.au/salary-centre/it-telecommunications/-/australia
Posted by scotti3g
“This is one line.\nThis is another line.”
‘This is one line.\nThis isn’t another line. Plus, this will show the \n’
‘This gets processed faster, but variables need to be ‘.$external
“This gets processed slower but can parse $internal varialbes.”
Posted by scotti3g
PLAY seems to only work on 2nd click.
Use STATUS instead.
Posted by scotti3g
http://codeigniter.com/forums/viewthread/96318/
start_cache, stop_cache
Posted by scotti3g
Say you make a model that returns a single value such as the name of a user. Might be an idea to plan ahead just in case you need to return multiple results.
eg.
$name = $this->user->get_name($id)->real_name
better than
$name = $this->user->get_name($id)
because what if we need something else later like a nickname?
$name = $this->user->get_name($id)->nickname