Quote:
Originally Posted by Hex_legend
so the registration page is ok to be copied? it will still work ok?
What about having the fields show up? As I use the ACP profile field manager to show them on registration.
how do you do ?type=model etc
|
I would guess you could copy the registration page - I don't see why not. You'd have to change some things that refer to that specific page (THIS_SCRIPT comes right to mind).
As for type=model etc... you would just create a new variable that gets passed to the page, just as t=xxx or p=xxx gets passed. And then in the registration page, you would have an if area that is kinda like this (of course, run the variables through the cleaner):
PHP Code:
if ($type == 'model')
{
do this stuff
} else if ($type == 'photo')
{
do this stuff
} else if ($type == 'hair')
{
do this stuff
}