我在localhost上安装了wamp服务器。并使用codeigniter框架创建了应用程序。
我在控制器中使用redirect(url)
方法。如果在同一控制器中发现任何错误,页面将重定向到该URL。但在服务器上它不会重定向并显示错误。
我想在localhost上使用相同的功能。
如何实现它?
controller Appointments extends CI_COntroller
{
function index()
{
load view
}
function save()
{
$customer_id=$c_id; //accessing undeclared variable $c_id which is error
redirect(base_url("appointments"))
}
}
上面的代码错误发生在$ customer_id = $ c_id;因此应该防止重复,并且应该显示错误。文件在服务器上但在localhost上没有显示错误时显示错误。
答案 0 :(得分:0)