$has1$has2$has3$has4$has5
Warning: Cannot modify header information - headers already sent by (output started at /var/www/MSNShell/magicdp/libs/User.class.php:97) in /var/www/MSNShell/magicdp/libs/UserAuth.class.php on line 145Warning: Cannot modify header information - headers already sent by (output started at /var/www/MSNShell/magicdp/libs/User.class.php:97) in /var/www/MSNShell/magicdp/dp/clientlogin.php on line 84

解决方案 »

  1.   

    header输出前输入数据了
    例如header()函数就必须放在其他的输出前面
      

  2.   

    Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. It is a very common error to read code with include(), or require(), functions, or another file access function, and have spaces or empty lines that are output before header() is called. The same problem exists when using a single PHP/HTML file.