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

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 13  |  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. PHP - Session not initializing
  2. session_start();
  3.  
  4. if(isset($_SESSION['Finished']))
  5. {
  6.     header("Location: http://www.google.com");
  7. }
  8.        
  9. session_start();
  10.  
  11. if(isset($_SESSION['INGEVULD']))
  12. {
  13.     header('Location: http://www.google.com');
  14. }
  15. else
  16. {
  17.     ..(mailing + check)..
  18.     $_SESSION['Finished'] = true;
  19. }
  20.        
  21. header("Location: http://www.google.com");
  22. exit;