Jump to content

Parse error: syntax error, unexpected T_VARIABLE..I need help!


//nocomment

Recommended Posts

Im working on a login system..and im trying to make it so when a user registers, a directory is automatically created for there account and there default page is loaded into that direcoty, but i keep getting this error: "Parse error: syntax error, unexpected T_VARIABLE in /home/hollida/login.php on line 11". Can someone help me find what im doing wrong?? ;D

Heres the register script:

[code]<HTML>
<HEAD>
<TITLE>Login</TITLE>
</HEAD>
<BODY>
<H1><font face="Verdana" size="4" color="#2852A8">Login to Secure Area</font></H1>

<?php
$fp = fopen ('/user/index.html', 'ab')

$dir = rand (0, 4567);

fwrite ($fp);
fclose ($fp);

mkdir ("/user/$dir");

} else {
?>


<FORM METHOD="POST" ACTION="redirect.php">
<P><font face="Verdana" size="2" color="#2852A8"><STRONG>Username:</STRONG><BR>
</font><font color="#2852A8" face="Verdana">
<INPUT TYPE="text" NAME="username" SIZE=25 MAXLENGTH=25></font></p>
<P><font face="Verdana" size="2" color="#2852A8"><STRONG>Password:</STRONG><BR>
</font><font color="#2852A8" face="Verdana">
<INPUT TYPE="password" NAME="password" SIZE=25 MAXLENGTH=25></font></p>
<P><font face="Verdana"><font color="#2852A8">
<input type="checkbox" name="remember" value="Yes"></font><font size="2" color="#2852A8">Remember
me from this computer</font></font></p>
<P><font color="#2852A8">
<INPUT TYPE="submit" NAME="submit" VALUE="Login" style="font-family: Verdana"></font></P>
</FORM>
<?php
}
?>
</BODY>
</HTML>[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.