Read the latest web development and design tips at Fred Wu's new blog! :-)
Poke me on GitHub

http://content.mycareer.com.au/salary-centre/it-telecommunications/-/australia

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts

“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.”

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts

Tags: , , , ,

DATE_ADD()
DATE_SUB()

very handy!

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts

Tags: , , , ,

PLAY seems to only work on 2nd click.

Use STATUS instead.

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts

Tags: , ,

http://codeigniter.com/forums/viewthread/96318/

start_cache, stop_cache

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts

Tags:

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

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts