Bir PHP sunucu üzerinde iki dosya var. Bir dosya (ismi "first.php") bu kodu içerir:
<html>
<head>
<title>First Page</title>
</head>
<body>
Please enter your password and age:
<form action="pass.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
Diğer dosya ("pass.php") bu kodu içerir:
<html>
<head>
<title>Secon Page</title>
</head>
<body>
<?php
if ($fname=="Jack")
echo "You are Jack!";
else
echo "You are not Jack!";
?>
</body>
</html>
Olarak anladığım kadarıyla, bir kullanıcı ikinci sayfasında daha ilk sayfasında "Jack" girerse ile görüntülenmesi gerekir "Jack vardır!" çizgi, ama bu olmaz. Neden bu böyledir?