please look at this script and tell me what's wrong:
Code:
<html>
<head>
<title>index</title>
</head>
<body>
<?php
$index=$_GET["page"];
if ($page=="home")
echo "home";
elseif ($page=="biography")
echo "biography";
elseif ($page=="poetry")
echo "poetry";
elseif ($page=="forum")
echo "forum";
elseif ($page=="guestbook")
echo "guestbook";
elseif ($page=="links")
echo "links";
elseif ($page=="friends")
echo "friends";
?>
</body>
</html>
if you can so thanks!