nfdevil

Untitled

Jul 29th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. $movies_array = array(
  2.     'title' => $this->input->post('title'),
  3.     'info' => $this->input->post('info')
  4. );
  5. $actors_array = array(
  6.     'name' => $this->input->post('actorname')
  7. );
  8. $movies_actors_array = array();
  9. $this->db->insert('movies', $movies_array);
  10. $movies_actors_array['movies_id'] = $this->db->insert_id();
  11. $this->db->insert('movies', $actors_array);
  12. $movies_actors_array['actors_id'] = $this->db->insert_id();
  13. $this->db->insert('movies_actors', $movies_actors_array);
Advertisement
Add Comment
Please, Sign In to add comment