
Nie robilem nic nigdy w CI a i w obiektowym php nie mam duzej wprawy. Tworze serwis z linkami do darmowych galerii porno


<?php class Galleries extends Controller { function __construct() { parent::Controller(); $this->load->library('parser'); $this->load->model('Galleries'); } function show_cat_galleries($cat_name) { $this->content['main'] = $this->parser->parse('content_template', array('gallery_content' => $this->Galleries->get_cat_galleries($cat_name))); } function __destruct() { $this->parser->parse('site_template', $this->content); } } ?>
Z gory dzieki za odpowiedz!