未定义索引电子邮件错误

时间:2017-10-18 18:56:12

标签: php html

我在这里遇到问题 这是我忘记的pass.php代码

<?php
if(isset($_POST['submit_email']) && $_POST['email'])
{
require 'connect.php';
include 'connect.php';
  $select=mysqli_query($con, "SELECT * from `users` where email='$email'");
  if(mysqli_num_rows($select)==1)
  {
    while($row=mysql_fetch_array($select))
    {
      $email=($row['email']);
      $pass=md5($row['password']);
    }

我在第6行收到错误Undefined variable: email。 在此先感谢您的帮助

0 个答案:

没有答案