![]() |
how to scan through a string of character with PHP - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: how to scan through a string of character with PHP (/showthread.php?tid=13283) |
how to scan through a string of character with PHP - El Forum - 11-17-2008 [eluser]ebot[/eluser] hello all i need help, i will like any one to help on how to scan through a text or string of characters with code igniter and compare to a word store in the database. thanks for the help how to scan through a string of character with PHP - El Forum - 11-17-2008 [eluser]alanphil[/eluser] I would recommend that you read about the Database class in the user guide. Lots of good examples on how to do this. You don't provide enough information on what exactly you are trying to do, but one possible solution might use the following: $this->db->like(); Or you might want to use a Regular Expression? Provide more detail about your problem and the forum can provide a better answer. Alan |