I’m trying to make a form, but it can’t be loaded in view. I’m using Bootstrap.My controller code is:

<?php

class Boot extends CI_Controller {
      public function __construct() {
        parent::__construct();
    }

    function index() {

        $this->load->helper('form');
        $this->load->library('form_validation');

        // $data['form_css'] = array('class' => 'form-control');
        $this->load->view('bootview');
        $this->load->view('forma');

    }
}

My view is:

<html>
<head>
<link rel="stylesheet"  href="<?php echo base_url("assets/css/bootstrap.css"); ?>" />
</head>
<body>
<h2>Create a news item</h2>

    <?php echo validation_errors(); ?>

    <?php echo form_open('boot/index') ?>
        <div class="form-group">

        <label for="name">Name:</label>
        <input type="text" id="name" class="form-control" autofocus name="name" placeholder="Name"></br></br>
        <input type="submit" name="submit" value="Create news item" />
        </div>
    </form>

Recommended Answers

All 4 Replies

I made it properly :)

Hmm, class names are not case sensitive, but I believe I remember hearing of an issue with autoload etc being case sensitive for what ever reason. Also, you're missing a closing ';' after your function.

try
<?php echo form_open('Boot/index'); ?>

if that doesn't work, then try
<?php echo form_open('Boot/index/'); ?>

and finally
<?php echo form_open('Boot'); ?>

Well nevermind then :)

I hadn't pasted the correct link for Bootstrap i head tag :) That was the reason :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.