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>