📜  CodeIgniter传递参数

📅  最后修改于: 2021-01-01 03:30:37             🧑  作者: Mango

在CodeIgniter中传递参数

现在,我们将看到一个将参数从控制器传递到视图的示例。

1)下载CodeIgniter并命名。我们将其命名为params。

2)在application / controllers文件夹中创建一个文件para.php。

name="CodeIgniter";
}
function tut()
{
$data['name']=$this->name; 
// define variable sent to views
$this->load->view('para_view',$data);
 }
}
?>

3)在application / views文件夹中创建一个文件para_view.php。




    Passing Parameter


    

Hello, This is Tutorial.

4)在浏览器上使用URL运行程序

http://localhost/params/index.php/para/tut

5)以下输出将出现在屏幕上。