Can some one see a mistake in the value section becuse I cant and php is showing that this line is not valid
<input type="password" name="password" id="usernameInputBox" value="<?php echo$_POST['first_name'];?>">
I also tried this
<input type="text" name="first_name" class="background" value="<?php echo $fn ?>" >
also could some one explain what isset Does and thus the code below
<input type="text" name="txtName"
value="<?php if(isset($HTTP_POST_VARS['txtName']) )
{echo$HTTP_POST_VARS['txtName'];}?>">