controller:
<?php
namespace app\index\controller;
use think\Controller;
class Detail extends Controller
{
public function detail(){
$title = $_REQUEST['title'];
$this->assign('title',$title);
return $this->fetch();
}
}
view:<p>{$title}</p>