Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. class test {
  3.     public function show($id) {
  4.     $this->$load->$model('news_model');
  5.     $news = $this->news_model->get_news($id);
  6.     data['title'] = news['title'];
  7.     data['body'] = news['body'];
  8.     $this->$load->$view('news_article', $data);
  9.     }
  10. }
  11. echo show(1);
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement