06-12-2008, 09:45 AM
Greetings,
For those of you who would like to create a second or however many of different registration pages you can do the following:
(1) Duplicate /interface/register.php
Example: /interface/register2.php
(2) To call the new registration page use URL to register.php?x=register2
Example: http://www.your-domain.com/mm2/register.php?x=register2
(3) In /interface/register2.php add to the form action line: ?x=register2
Example:
Thats it!
For those of you who would like to create a second or however many of different registration pages you can do the following:
(1) Duplicate /interface/register.php
Example: /interface/register2.php
(2) To call the new registration page use URL to register.php?x=register2
Example: http://www.your-domain.com/mm2/register.php?x=register2
(3) In /interface/register2.php add to the form action line: ?x=register2
Example:
Code:
<form action="{$SCRIPT_NAME}?x=register2" method="Post">Thats it!