i have this script i am making for a fanlisting program
<?php
if ( $password == "plaintarget" )
{
setcookie ( "acess" , "true" , time()+3600, "/", "come-september.org", 0 );
dothings();
}
else
{
print ("the password was wrong");
}
$cookiecheckky = $HTTP_COOKIE_VARS['acess'];
function dothings(){
if ( $cookiecheckky == "true" )
{
print ( $stuff );
}
else
{
print ( "acess denied!");
}
}
$stuff = "<html>
<head>
<title>welcome to the slackerbitch fanlisting editor</title>
<style type=\"text/css\">
<!--
A:link
{ text-decoration: none; color:#F1CF69 }
A:visited
{ text-decoration: none; color:#F1CF69 }
A:active
{ text-decoration: none; color:#F1CF69 }
A:hover
{ text-decoration: none; color:#ffffff;
background-color:#F1CF69;
}
body
{ background-color: #F1CF69;
font-family: verdana;
color: #000000 ;
font-size:xx-small;
scrollbar-face-color : #F1CF69;
scrollbar-highlight-color : #F1CF69;
scrollbar-3dlight-color : #F1CF69; scrollbar-shadow-color : #F1CF69;
scrollbar-darkshadow-color : #F1CF69; scrollbar-track-color : #F1CF69;
scrollbar-arrow-color : #ffffff }
input, textarea
{ background: #F1CF69;
font-family: verdana;
color: #000000;
border-style: dotted;
border-color: #F1CF69;
border-width: 1px;}
div.everything
{ background: #ffffff; width: 85%; height: auto; border: dotted 2px #F1CF69;
scrollbar-face-color : #ffffff;
scrollbar-highlight-color : #ffffff;
scrollbar-3dlight-color : #ffffff; scrollbar-shadow-color : #ffffff;
scrollbar-darkshadow-color : #ffffff; scrollbar-track-color : #ffffff;
scrollbar-arrow-color : #F1CF69}
-->
</style>
</head><body>
<center>
<div class=\"everything\"><br><br>
<div style=\"width: 75%; height: auto; border: 0px solid black;\">
<p align=\"left\"><img src=\"editor.jpg\"></p><br>
</div>
<hr color=\"#F1CF69\" noshade size=\"2\" width=\"80%\"><br><br>
<h3>Updates</h3>
<div style=\"width: 95%; height: auto; border: 0px solid black;\">
<form method=\"post\" action=\"updates.php\">
<p align=\"left\">updates:<br>
<textarea rows=\"10\" name=\"updates\" style=\"width: 100%; background: #ffffff;\"></textarea><br>
<center><input type=\"submit\" value=\"update slackerbitch updates\" style=\"width: 250px;\"></center>
</p>
</form>
</div>
<br>
<hr color=\"#F1CF69\" noshade size=\"2\" width=\"80%\"><br><br>
<h3>Applicants</h3><br>
<div style=\"width: 95%; height: auto; border: 0px solid black;\">
<p><?php include(\"app.txt\" ); ?></p>
</div>
<br>
<hr color=\"#F1CF69\" noshade size=\"2\" width=\"80%\"><br><br>
<h3>Remove fans</h3><br>
<div style=\"width: 95%; height: auto; border: 0px solid black;\"><br>
<form method=\"post\" action=\"remove.php\">
name:<br>
<input type=\"text\" name=\"name\" style=\"background: #ffffff;\"><br>
email:<br>
<input type=\"text\" name=\"email\" style=\"background: #ffffff;\"><br>
country:<br>
<input type=\"text\" name=\"location\" style=\"background: #ffffff;\"><br>
homepage:<br>
<input type=\"text\" name=\"www\" value=\"http://\" style=\"background: #ffffff;\"><br>
<input type=\"submit\" value=\"remove user\">
</form>
</div>
</p>
</div>
</center>
</body>
</html>";
?>
buuuttt every time i submit the external form i just get "acess denied!" back, no maytter how many different times i write in the password