I got this strange error https://i.sstatic.net/ZeYVM.png
my hello.php in my controller
<?php
class Hello extends CI_controller {
public function one($name){
$this->load->view('one');
$data = array("name" => $name);
}
}
and this is my view one.php
<?php
echo $name;
?>