Created
June 16, 2017 07:36
-
-
Save zhelinskyy/26e5ac1a525e65026b9a3d52faffad10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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