Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Mini Coder

Mini Coder Avatar

*
New Member

13


July 2011
I'm new to coding, and I only joined today but I made a basic forum sign-up sheet while I was figuring out the codes in the tutorial section. I would like to make these part of the sign-up on my forum, so if anyone could give advice or tell me how to use it on proboards that would be much appreciated.

<html>
<head>
<title>Forum - SignUp</title>
</head>
<body>
Thank you for applying for this forum! Please file the following form:
</body>
<form>
First Name:
<input type="text">
<br>
Last Name:
<input type="text">
</form>
<form>
Are you above 13 years of age?<br>
<input type="radio" name="age" value="yes"> Yes
<br>
<input type="radio" name="age" value="no"> No
</form>
<form>
Gender:<br>
<input type="radio" name="gender" value="male"> Male
<br>
<input type="radio" name="gender" value="female"> Female
</form>
<form>
Do you agree to the proBoards terms of agreement?<br>
<input type="radio" name="agree" value="yes"> Agree
<br>
<input type="radio" name="agree" value="no"> Disagree
</form>
<body>
Thank you for submitting this form and looking to join the forum!
</body>
<form>
<input type="submit" value="Submit">
</form>
</html>

Again, advice would be much appreciated.
-Ethan
My Forum
I came here to learn how to code for my forum and to share with others[/b]

Jim

Jim Avatar
Josh was here.

****
Studio Member

740


September 2005
Well, first let me note this.

You can't. It violates TOS to collect any additional information with the registration process on ProBoards.

With that said, if you wanted to be able to collect this information and store it, you'd have to submit the form to a perl or PHP page that stores this information (along with the username of the user) in a database.


Chris

Chris Avatar

******
Head Coder

19,519


June 2005
If you're asking for help, you'll get more replies in this board. :)

Why're you trying to add this to the sign up form? Chances are it actually isn't allowed. =/

Benjamin

Benjamin Avatar
#YOCO... You only color once.

******
Elite Mod

1,959


November 2006
Doesn't it ask for all that information anyway?
Lucifer Avatar
I'm gonna start dishing out internet beatings if people keep it up with this 4chan shit, I swear.





newBookmarkLockedFalling