I have this very simple code. Its supposed to go to google when i click on enter, but the php code just pops up on a blank screen. It doesnt execute?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
  <form name="form" action="test.php" method="get">
    <input type="text" name="subject" id="subject" value="Car Loan">
  </form>
</body>
</html><?php header('Location: http://google.dk') exit; ?>
 
    