繁体   English   中英

如何使用PHP修复本地主机中的“ ERR_TOO_MANY_REDIRECTS”

[英]How to fix “ERR_TOO_MANY_REDIRECTS” in localhost using php

每次我打开php文件时,都会出现一条消息

“此页面无法正常运行,本地主机已将您重定向了太多次。请尝试清除您的cookie。ERR_TOO_MANY_REDIRECTS”

也许与标题的位置以及所有其他原因有关,但我似乎无法找到导致此错误的原因。

我检查了我所有的查询和php代码几次,但是我一定忽略了某些东西,否则我只是不知道如何解决它。

 <?php 
  function console_log( $data ){
    echo '<script>';
    echo 'alert('. json_encode( $data ) .')';
    echo '</script>';
  }

  include("includes/dbh.inc.php");
  if(isset($_GET['user_email']) && !empty($_GET['user_email'])){

    $event_id=$_GET['event_id'];
    $query = "SELECT * FROM user_details WHERE user_email = '$user_email'";
    $statement = $connect->prepare($query);
    $statement->execute();
    $result = $statement->fetchAll();
    $number_of_rows = $statement->rowCount();

    foreach($result as $row){
      $email = $row["user_email"];
      $name = $row["username"];
      $profpic = $row["user_profile"];
      $phone = $row["phone_no"];
      $address = $row["user_address"];
      $events = $row["events_no"];
      $company = $row["company_name"];
      $companyloc = $row["company_location"];

    }
  }else{
    header("Location: edit-profile.php");
  }

  if(isset($_POST['update']))
    {

       include("includes/dbh.inc.php");

       // get values form input text and number

       // $id = $_POST['id'];
       $email = $_POST['email'];
       $name = $_POST['name'];
       $profpic = $_FILES['logo']['name'];
       $phone = $_POST['phone'];
       $address = $_POST['address'];
       $events = $_POST['events'];
       $company = $_POST['company'];
       $companyloc = $_POST['companyloc'];

       // mysql query to Update data
       $query = "UPDATE `user_details` SET `user_email`='".$email."',`username`='".$name."',`user_profile`='".$profpic."',`phone_no`='".$phone_no."',`user_address`='".$address."',`company_name`='".$company."',`company_location`='".$companyloc."' WHERE user_email =".$email."";

        if (move_uploaded_file($_FILES['logo']['tmp_name'], $target)) {
            $msg = "Image uploaded successfully";
          }else{
            $msg = "Failed to upload image";
          }

       $result = mysqli_query($connect, $query);

       if($result)
       {
           echo 'Data Updated';
       }else{
           echo 'Data Not Updated';
       }
       mysqli_close($connect);
    }
  ?>

预期的输出应显示此页面的UI布局,并可以进行一些编辑,但直接出现的错误太多

这是代码:

<body>
 <?php 
  function console_log( $data ){
    echo '<script>';
    echo 'alert('. json_encode( $data ) .')';
    echo '</script>';
  }

  include("includes/dbh.inc.php");
  if(isset($_GET['user_email']) && !empty($_GET['user_email'])){

    $event_id=$_GET['event_id'];
    $query = "SELECT * FROM user_details WHERE user_email = '$user_email'";
    $statement = $connect->prepare($query);
    $statement->execute();
    $result = $statement->fetchAll();
    $number_of_rows = $statement->rowCount();

    foreach($result as $row){
      $email = $row["user_email"];
      $name = $row["username"];
      $profpic = $row["user_profile"];
      $phone = $row["phone_no"];
      $address = $row["user_address"];
      $events = $row["events_no"];
      $company = $row["company_name"];
      $companyloc = $row["company_location"];

    }
  }else{
    header("Location: edit-profile.php");
  }

  if(isset($_POST['update']))
    {

       include("includes/dbh.inc.php");

       // get values form input text and number

       // $id = $_POST['id'];
       $email = $_POST['email'];
       $name = $_POST['name'];
       $profpic = $_FILES['logo']['name'];
       $phone = $_POST['phone'];
       $address = $_POST['address'];
       $events = $_POST['events'];
       $company = $_POST['company'];
       $companyloc = $_POST['companyloc'];

       // mysql query to Update data
       $query = "UPDATE `user_details` SET `user_email`='".$email."',`username`='".$name."',`user_profile`='".$profpic."',`phone_no`='".$phone_no."',`user_address`='".$address."',`company_name`='".$company."',`company_location`='".$companyloc."' WHERE user_email =".$email."";

        if (move_uploaded_file($_FILES['logo']['tmp_name'], $target)) {
            $msg = "Image uploaded successfully";
          }else{
            $msg = "Failed to upload image";
          }

       $result = mysqli_query($connect, $query);

       if($result)
       {
           echo 'Data Updated';
       }else{
           echo 'Data Not Updated';
       }
       mysqli_close($connect);
    }
?>

 <div class="wrapper">
    <div class="page-header page-header-xs" data-parallax="true" style="background-image: url('assets/img/fabio-mangione.jpg');">
        <div class="filter"></div>
    </div>
    <div class="section profile-content">
        <div class="container">
           <div class="tim-title text-center " >
              <h2 style="font-size: 3em;">Edit Profile Details</h2>
           </div>
            <div class="container-fluid" style="margin-left: 120px;">
                    <div class="form">
                        <form method="post" enctype="multipart/form-data" action="eventus-addevent.php">

                           <div class="container" style="margin-top: 50px;">
                            <div class="row">
                                <div class="col-sm-3">
                                    <label><h3>Profile Picture</h3></label>

                                </div>
                                <div class="col-sm-4" style="margin-left: 90px;">
                                    <div class="input-group" >
                                        <img name="pp"src="<?php echo images/$user_profile?>" alt="Circle Image" class="img-circle img-no-padding img-responsive">
                                    </div>
                                    <div>
                                        <input type="file" name="logo" >
                                    </div>
                                </div>
                                <div class="col-sm">

                                </div>
                            </div>

                            <div class="row">
                                <div class="col-sm">
                                    <label><h3>Profile name</h3></label>

                                </div>
                                <div class="col-sm-4">
                                    <div class="mui-textfield" style="margin-top: 25px;">
                                        <input type="text" name="title1" placeholder="Enter Event name here" value="<?php echo $title1;?>">
                                    </div>
                                </div>
                                <div class="col-sm">

                                </div>

                            </div>
                            <div class="row">
                                <div class="col-sm">
                                    <label><h3>Company Address</h3></label>

                                </div>
                                <div class="col-sm-4">
                                    <div class="mui-textfield" style="margin-top: 25px;">
                                        <input type="text" name="title1" placeholder="Enter Event name here" value="<?php echo $title1;?>">
                                    </div>
                                </div>
                                <div class="col-sm">

                                </div>

                            </div>
                            <div class="row">
                                <div class="col-sm">
                                    <label><h3>My Address</h3></label>

                                </div>
                                <div class="col-sm-4">
                                    <div class="mui-textfield" style="margin-top: 25px;">
                                        <input type="text" name="title1" placeholder="Enter Event name here" value="<?php echo $title1;?>">
                                    </div>
                                </div>
                                <div class="col-sm">

                                </div>

                            </div>
                             <div class="row">
                                <div class="col-sm">
                                    <label><h3>Contact Number</h3></label>

                                </div>
                                <div class="col-sm-4">
                                    <div class="mui-textfield" style="margin-top: 25px;">
                                        <input type="text" name="title1" placeholder="Enter Event name here" value="<?php echo $title1;?>">
                                    </div>
                                </div>
                                <div class="col-sm">

                                </div>

                            </div>
                             <div class="row">
                                <div class="col-sm">
                                    <label><h3>Email Adress</h3></label>

                                </div>
                                <div class="col-sm-4">
                                    <div class="mui-textfield" style="margin-top: 25px;">
                                        <input type="text" name="title1" placeholder="Enter Event name here" value="<?php echo $title1;?>">
                                    </div>
                                </div>
                                <div class="col-sm">

                                </div>

                            </div>
                             <br/><br/>

                            <div class="row">
                                <div class="col-sm-8">
                                    <button type="submit" name="update" class="btn btn-primary">SAVE EDIT</button>
                                </div>
                                <div class="col-sm-4">

                                </div>
                            </div>
                           <br/>

        </div>
    </div>
</div>

  1. 不要重定向到同一页面。
  2. 使用标头后,只需添加die()或exit()。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM