Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[help] rageonlinev10 web front end

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jun 29, 2008
Messages
63
Reaction score
0
i have been trying to get the registration part working all day now and its driving me up the wall. Does anyone here know how to get this working?
I have this running from a single html file in the root of server files.

Code:
<form name="registerForm" method="POST" action onsubmit="changeAction('register');">

          <table width="245" align="center">

            <tr>

              <td class="c" width="435" colspan="2">

              <div align="center" class="style3">

                 </div>

              </td>

            </tr>

            <tr>

              <th width="162"><span class="style5">Username:</span></th>

              <th width="137">

              <input name="character" type="text" class="style5" onkeypress="

     if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;

     if (event.which==60 || event.which==62) return false;" size="20" maxlength="20" /></th>

            </tr>

            <tr>

              <th width="162"><span class="style5">Password:</span></th>

              <th width="137">

              <input name="passwrd" type="password" class="style5" onkeypress="

     if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;

     if (event.which==60 || event.which==62) return false;" size="20" maxlength="20" /></th>

            </tr>

            <tr>

              <th width="162"><span class="style5">E-Mail:</span></th>

              <th width="137">

              <input name="email" type="text" class="style5" onkeypress="

     if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;

     if (event.which==60 || event.which==62) return false;" size="20" maxlength="40" /></th>

            </tr>

            <tr>

              <th width="162"><span class="style5">Planet Name: </span></th>

              <th width="137">

              <input name="planet" type="text" class="style5" onkeypress="

     if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;

     if (event.which==60 || event.which==62) return false;" size="20" maxlength="20" />

              </th>

            </tr>

            <tr>

              <th width="162"><span class="style5">Sex:</span></th>

              <th width="137"><span class="style5"><select name="sex">

              <option value="M">Male</option>

              <option value="F">Female</option>

              </select> </span></th>

            </tr>

            <tr>

              <th width="162"><span class="style5">Language:</span></th>

              <th width="137"><span class="style5"><select name="langer0">

              <option value="en" selected="selected">English</option>

              </select> </span></th>

            	</tr>

            <tr>

              <th width="162"><span class="style5">Race:</span></th>

              <th width="137"><span class="style5"><select name="race">

              <option value="amarr">amarr</option>

				<option value="caldari">caldari</option>

				<option value="gallente">gallente</option>

				<option value="minmatar">minmatar</option>

              </select> </span></th>

            </tr>

            <tr>

              <th width="162"><img src="captcha.php" /></th>

              <th width="137">

              <input name="captcha" type="text" class="style5" size="20" maxlength="20" /></th>

            </tr>

            <tr>

              <th width="162"><span class="style5">

              <input name="rgt" type="checkbox" value="on" />

              <a target="_blank" href="http://www.forum.combatants.co.uk/viewtopic.php?f=2&t=5&p=8#p8">Accept</a></span></th>

              <th width="137">

              <input name="submit" type="submit" class="style5" value="Register" /></th>

            </tr>

          </table>

        </form>
 
Newbie Spellweaver
Joined
Jun 29, 2008
Messages
63
Reaction score
0
i have tried altering the form action to point to reg.php like what was done with the login form in the html file.

Does anything need editing in the reg.php page?
 
Newbie Spellweaver
Joined
Jun 29, 2008
Messages
63
Reaction score
0
All sorted. There was a bug in the html part of the page for some reason (frontpage strike again!!!!)
 
Status
Not open for further replies.
Back
Top