包括标题页会话错误

时间:2017-03-10 19:10:21

标签: php html css

我有一个标题页,其中包含导航栏和必要的css,js's。

我正在尝试从联系页面调用标题页,但出现了问题。

我在联系页面上看到此错误。

  • 警告:session_start():无法发送会话缓存限制器 - 已在C:\ xampp \ htdocs \ test \ contact中发送的标头(从C:\ xampp \ htdocs \ test \ includes \ header.php:84开始输出)第3行.php

按照联系页面代码。

<?php include_once ("includes/config.php");
include_once ("includes/header.php");
session_start();
require_once'includes/phpmailer/security.php';
?>


<div class="container">
    <div class="contact">

        <?php if(isset($_GET['CaptchaPass'])){?>
        <div >message sent</div>
        <?php } ?>
        <?php if(isset($_GET['CaptchaFail'])){?>
        <div >message failed</div>
        <?php } ?>

        <form action="includes/contact-config.php" method="post">
            <div class="form-group">
                <label for="name">Your Name *</label>
                <input type="text" name="name" autocomplete="off" required="" class="form-control" placeholder="Enter Name"  <?php echo isset ($fields['name'])? 'value="'.e($fields['name']).'"':''?>>
            </div>
            <div class="form-group">
                <label for="email">Your Email address * </label>
                <input type="email" name="email" autocomplete="off" required=""  class="form-control" placeholder="Enter Email"<?php echo isset ($fields['email'])? 'value="'.e($fields['email']).'"':''?>>
            </div>
            <div class="form-group" >
                <label for="message">Your Message *</label>
                <textarea class="form-control" rows="8" id="comment" required=""  name="message"<?php echo isset ($fields['message'])? e($fields['message']):''?>></textarea>
                <br>
                <div class="g-recaptcha" data-sitekey="6LcyfhgUAAAAAKunkwqqxFJSOPUzYbNmppLQbcWc"></div>


                <input type="submit" value="Send" id="ContactButton" class="form-control" class="btn btn-primary">
            </div>
        </form>

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

<?php include ("includes/footer.php");?>

header.php文件夹路径 - &gt; C:\ XAMPP \ htdocs中\测试\包括\的header.php

contact.php文件夹路径 - &gt; C:\ XAMPP \ htdocs中\测试\ contact.php

1 个答案:

答案 0 :(得分:1)

最有可能的问题是,includes/config.phpincludes/header.php正在向浏览器输出内容 - 可能是空格。

如果这些文件有一个结束的PHP标记?>,删除它们应该有助于解决问题。另外,请确保没有文件使用echoprint或其他输出函数。