include("title.php);
上面这句少个引号了!

解决方案 »

  1.   

    include("title.php);-->少了个“;
    贴出config.php来看看;
      

  2.   

    没错,如果CONFIG.PHP没问题就是少个"
      

  3.   

    <?php
    include("config.php");
    include("title.php);
    ?>
    <html>
    <head>
    <title>
    <?php
    page_header($fpage_title);//$fpage_title在config.php中
    ?>
    </title>
    ...
      

  4.   

    掉了引号了<?php
    include("config.php");
    include("title.php");
    ?>
    <html>
    <head>
    <title>
    <?php
    page_header($fpage_title);//$fpage_title在config.php中
    ?>
    </title>
    ...