Your HTML attributes are not formatted correctly.
All attributes must be in the format attribute="value"
Two working formats are formatted correctly, while others are not.
For example, <input type:"text" name"email"> is incorrect. It should be <input type="text" name="email" />
They should be like this:
First Name: <input type="text" name="firstName"><br> Last Name: <input type="text" name="lastName"><br> Email: <input type="text" name="email"><br> Desired Username: <input type="text" name="username"><br> Password: <input type="text" name="password"><br> <input type="submit" name="Submit">
If you are not using one of them yet, I would suggest you get a code editor with syntax highlighting or auto-complete. Notepad ++, Netbeans, or Visual Studio can color your code and make troubleshooting easier.
You also have what is probably an error in your PHP: header( 'Location: loaclhost:8888/userHome.html' ) ; - I have a feeling that you probably would like to type "localhost" there; -)
source share