01-26-2016, 07:46 AM
Okey. I get now a Button named "Register". This is my code:
<html>
<head>
<title>Register</title>
</head>
<body>
<form action = "register.php" method ="_POST">
<br>
<input type="submit" value="Register">
<form>
</body>
</html>
But when I click on my Button Register I want thats open the Register Form in a new Browser Window from Firefox. How I do this?
And when I get the Register Form it shows so:
15 ) echo Pick a username between 3 and 15 characters long; elseif( !ctype_alnum( $_POST[username] ) ) echo Please use only alfanumeric characters as username ( a-Z 0-9 ); etc...
and below I get the Fieldnames with the Field and the Button for sending my register inputs.
How I can I make it so that its open a new firefox window and I can hide all above the input fields in the php script?.

