Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Page Redirection problem in php
  2. Warning: Cannot modify header information -
  3. headers already sent by (output started at C:wampwwwstudentlogin.php:18)
  4. in C:wampwwwstudentlogin.php on line 19
  5.        
  6. <?php
  7. echo 'test';
  8. header('location:index.php');
  9. exit;
  10. ?>
  11.        
  12. <html>
  13.   <head> .....
  14. <?php
  15. echo 'test';
  16. header('location:index.php');
  17. exit;
  18. ?>
  19.        
  20. <?php
  21. echo 'test';
  22. ob_start();
  23. flush();
  24. header('location:index.php');
  25. exit;
  26. ?>
  27.        
  28. ob_start();