Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. $this->model_board->Board_Column_Info();
  2.  
  3. [07-Apr-2014 08:11:22 Europe/Istanbul] PHP Fatal error: Call to undefined method Model_board::Board_Column_Info() in /home/project/public_html/application/controllers/main.php on line 6396
  4.  
  5. $this->model_board->Board_Column_info();
  6.  
  7. function Board_Column_Info ( $board_column_id )
  8. {
  9.  
  10. $this->db->select('*');
  11.  
  12. $this->db->from('board_column');
  13.  
  14. $this->db->where('board_column_id', $board_column_id );
  15.  
  16.  
  17. $query = $this->db->get();
  18.  
  19. if ( $query->num_rows() > 0 )
  20. {
  21. $row = $query->row_array();
  22. return $row;
  23. }
  24. else
  25. {
  26. return FALSE;
  27. }
  28.  
  29. }
  30.  
  31. i I lowercase and uppercase i
  32. ı I lowercase and uppsercase ı
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement