标头重定向未初始化PHP


Header redirect not initializing PHP

我在登录表单上遇到了一个头部重定向的小问题;虽然语句和它们都很好用,但肯定只能作为标题。我试过重定向太多的网站和页面,但仍然一无所获。非常感谢您的帮助。谢谢

  <center>
  <?php
  include './index.php';// This is a login form
  include './connection.php';// SQl connection page
  include './session.php'; // Sessions page
  error_reporting(E_ALL);
  $mysqli = new mysqli ("c3433870.co.uk.mysql", "c3433870_co_uk", "BFUWGpn3",        "c3433870_co_uk");
 if($mysqli->connect_errno > 0) {
  die('Unable to connect to database [' . $mysqli->connect_error . ']');
 }
 session_start();
 if(isset($_POST['submit'])){
    $stmt = $mysqli->prepare("SELECT username, password FROM users WHERE    username=? AND  password=? LIMIT 1");
    $username = $_POST['username'];
    $password = $_POST['password'];
    $stmt->bind_param('ss', $username, $password);
    $stmt->execute();
    $stmt->bind_result($username, $password);
    $stmt->store_result();
    if($stmt->num_rows == 1)  //To check if the row exists
        {
            while($stmt->fetch()) //fetching the contents of the row
              {
               $_SESSION['Login_sessions'] = true;
               $_SESSION['login_user'] = $username;
               header('Location: ./profile.php');

               }
        }
        else {
            echo "Wrong Username or Password!";
        }
        $stmt->close();
        $stmt->free_result();
    }
    else 
    {   
     echo "Not Found";
    }
 $mysqli->close();
 ?>
 </center>

服务器头在第一次回显之后发送。当你呼应你的中心标签时,你就挫败了自己。由于标头已经发送,因此无法更改内部的位置。

出于同样的原因,不关闭php标记被认为是最佳实践,因为php解析器不在乎这两种方式。

我会删除?>