PHP仍然没有读取本地文件

时间:2017-03-22 06:26:45

标签: php html ajax

经过几次尝试,我不知道为什么登录不起作用。我试图将用户登录(用户密码和存储在.txt文件中的电子邮件,每行都有计数,useremail,密码),然后将它们重定向到index2.php,仅供用户访问。我不确定我做错了什么。

登录表单位于index.php

的navbar中
cell.imageView.image = nil
cell.imageView.image = UIImage(named:"Calendar")

login.php代码

{{ Form::label('url', 'Update your youtube video url:') }}
{{ Form::text('url', null, ["class" => 'form-control input-lg']) }}

1 个答案:

答案 0 :(得分:0)

您不能echo $email;然后执行header()重定向。您必须启用output buffering

ob_start();
echo $email;
// other code
header("Location:$redirect");
ob_end_flush();

启用error reporting以查看出现了什么问题。