Hello recently some of you gave me help with my php form.
Well I have altered it slightly using a book and it has shown me
how to incorporate the php into itself.

So the form should work without an external php page

Could someone tell me if this is correct, I have attached the webpage in .txt format.

Thank you.

Recommended Answers

All 2 Replies

Very close. Remember, variables are case sensitive.
<input type="text" name="username" maxlength="12"/>
Then in the php you have:
$Username = $_POST["Username"];
Should be:
$Username = $_POST["username"];
The same goes for email, wing, and comment. Looks like your getting the hang of it though.

So when I change the case sensativity so that they are equal, it should work.

Taking into account that this form is itself the php as well.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.