IT

IT world related topic , web design, codeigniter, joomla , wordpress

engagement ring

The engagement is a sign that someone had tied her spouse and will soon be ready to lead to the wedding. Prior to the wedding, engagement rings are set and the the groom family come to know each other while deciding best date and all preparation of the wedding.
However, before holding the event have make decision of a model of your engagement ring or wedding ring? if you haven’t, you ought to know the latest model or trending ring of the year check out makemypromisering.com this website particularly set a handful of information about rings .

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • StumbleUpon
  • Reddit
  • Webnews
  • YahooMyWeb
  • Ask
  • blinkbits
  • Technorati

Codeigniter searches data

Been playing for awhile with codeigniter, i decided to convert some of my project website which was built on joomla to codeigniter, while it is challenging i found some difficulties in porting the site. One of the problem is when is use active record function like(), it seem this function is only working if you query a word only.
For example if you search “bali” on sentence “bali update” it will return true but when i search “bali update” it return false.

The work around is to use php function rawurldecode

$search = rawurldecode( $this->input->post('search') );
$this->db->like('search', $search);
$rows = $this->db->get('category')->result_array();
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • StumbleUpon
  • Reddit
  • Webnews
  • YahooMyWeb
  • Ask
  • blinkbits
  • Technorati