Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zhelinskyy/26e5ac1a525e65026b9a3d52faffad10 to your computer and use it in GitHub Desktop.
Save zhelinskyy/26e5ac1a525e65026b9a3d52faffad10 to your computer and use it in GitHub Desktop.
<?php if (!defined('BASEPATH'))
exit('No direct script access allowed');
/**
* @author ([email protected])
* @copyright 2017 CodeIgniter
*/
class Create_product extends Public_Controller
{
public function __construct()
{
parent::__construct();
}
// на /register грузиться index по замовчуванню
public function index()
{
//загружаєм вид registered і передаєм в нього з поста дані 'data'=>$_POST і в 'new-product-info вже використовуєм змінну $data
$this->load->view('new-product-info','data'=>$_POST, true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment