Welcome Guest, Not a member yet? Register   Sign In
Creating new record in database
#1

Hello, I am new in CodeIgniter, I just installed this framework and read documentation. I tried this:
http://www.codeigniter.com/user_guide/tu...items.html

Tutorial. I did two previous sections and everything worked fine, but after finished this one, I try to submit my form and get 404 page.

I noticed that after submiting my form, URL is:
Code:
http://localhost/index.php/news/localhost/index.php/news/create

Can it be something wrong with my routes?
Code:
$route['news/create'] = 'news/create';
$route['news/(:any)'] = 'news/view/$1';
$route['news'] = 'news';
$route['(:any)'] = 'pages/view/$1';
$route['default_controller'] = 'pages/view';

Here is my News_model



Code:
<?php
class News_model extends CI_Model {

    public function __construct() {
        $this->load->database();
    }
    
    public function get_news($slug = FALSE) {
        if ($slug === FALSE)
        {
            $query = $this->db->get('news');
            return $query->result_array();
        }
        $query = $this->db->get_where('news', array('slug' => $slug));
        return $query->row_array();
    }
    
    public function set_news() {
        $this->load->helper('url');

        $slug = url_title($this->input->post('title'), 'dash', TRUE);

        $data = array(
            'title' => $this->input->post('title'),
            'slug' => $slug,
            'text' => $this->input->post('text')
        );

        return $this->db->insert('news', $data);
    }
}

My news controller:

Code:
<?php
class News extends CI_Controller {

       public function __construct()
       {
               parent::__construct();
               $this->load->model('news_model');
               $this->load->helper('url_helper');
       }

       public function index()
       {
               $data['news'] = $this->news_model->get_news();
                $data['title'] = 'News archive';

                $this->load->view('templates/header', $data);
                $this->load->view('news/index', $data);
                $this->load->view('templates/footer');
       }

       public function view($slug = NULL){
               $data['news_item'] = $this->news_model->get_news($slug);
                
                if (empty($data['news_item'])){
                        show_404();
                }

                $data['title'] = $data['news_item']['title'];

                $this->load->view('templates/header', $data);
                $this->load->view('news/view', $data);
                $this->load->view('templates/footer');
       }
        
        public function create() {
            $this->load->helper('form');
            $this->load->library('form_validation');

            $data['title'] = 'Create a news item';

            $this->form_validation->set_rules('title', 'Title', 'required');
            $this->form_validation->set_rules('text', 'Text', 'required');

            if ($this->form_validation->run() === FALSE)
            {
                $this->load->view('templates/header', $data);
                $this->load->view('news/create');
                $this->load->view('templates/footer');

            }
            else
            {
                $this->news_model->set_news();
                $this->load->view('news/success');
            }
        }
}

And here is my form:

Code:
<h2><?php echo $title; ?></h2>

<?php echo validation_errors(); ?>

<?php echo form_open('news/create'); ?>

   <label for="title">Title</label>
   <input type="input" name="title" /><br />

   <label for="text">Text</label>
   <textarea name="text"></textarea><br />

   <input type="submit" name="submit" value="Create news item" />

</form>


I really appreciate any help.
Reply
#2

Do you have a .htaccess file in the root with index.php ?
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

Did you set a value for $config['base_url'] in your application/config/config.php file?
Reply
#4

(08-11-2016, 05:47 AM)Wouter60 Wrote: Did you set a value for $config['base_url'] in your application/config/config.php file?

It can help me and me with a paging to this script?

Thank you
Reply




Theme © iAndrew 2016 - Forum software by © MyBB