To cgraz..
Do you have any exampel like a form that points to another page after all the statments are correct typed in!!!
I have mad this form and i wounder i there is possible to go to another page after all is correct checks ....
the ting is i have alredy diffined ="<?=$PHP_SELF?>" to the same page how do i manage to make a extra point to another page after all values are correct!
<form action="<?=$PHP_SELF?>" method="post" name="hej">
Username:<br>
<input type="text" name="username" size="15" class="inputSidebar" value="<?php
if($username_control != 0){ echo $_POST['username'];}
elseif(username2_control !=0){ echo $_POST['username'];}
elseif(username3_control !=0){ echo $_POST['username'];}
elseif(username4_control !=0){ echo $_POST['username'];}
else{ echo ''; } ?>"> <?php echo $empty_username; ?><br>
Password:<br>
<input type="password" name="password" size="15" class="inputSidebar" value="<?php
if($password_control != 0){ echo $_POST['password'];}
elseif($password4_control !=0){ echo $_POST['password'];}
elseif($password5_control !=0){ echo $_POST['password'];}
else{ echo ''; } ?>"> <?php echo $empty_password; ?><br>
Verify Password:<br>
<input type="password" name="password2" size="15" class="inputSidebar" value="<?php
if($password2_control != 0 && $password_control != 0){ echo $_POST['password2'];}
else{ echo ''; } ?>"> <?php echo $empty_password2; ?><br>
E-mail (In case you lose your password):<br>
<input type="text" name="email" size="15" class="inputSidebar" value="<?php
echo $_POST['email']; ?>">
<?php echo $empty_email; ?><br><br>
<input class="button" type="submit" name="submit" value="Create User">
<input type="hidden" name="set" value="set">
</form>