Here's the new code in the
register.php file.
PHP Code:
$username = $userinfo['username'];
$DB_site->query("UPDATE user SET usergroupid=4$dotitle WHERE userid='$u'");
$userprofile = $DB_site->query_first("SELECT * FROM useractivation WHERE userid='$u'");
eval("standarderror(\"".gettemplate("error_moderateuser")."\");");
Here's the code I put into the
error_moderateuser template.
PHP Code:
field 5 = $bbuserinfo[field5] <br>
field 6 = $bbuserinfo[field6] <br>
username = $bbuserinfo[username] <br>
email = $bbuserinfo[email] <br>
================== <br>
field 5 = $field5 <br>
field 6 = $field6 <br>
email = $email <br>
================== <br>
field 5 = $userprofile[field5] <br>
field 6 = $userprofile[field6] <br>
email = $userinfo[email] <br>
================== <br>
<br>
Thank you for registering, $username.
And here's what was displayed by the
error_moderateuser template.
[color=sky blue]
field 5 = Jane Doe
field 6 = 123
username = test
email = my-email-address@my-domain.com
==================
field 5 =
field 6 =
email =
==================
field 5 =
field 6 =
email = my-email-address@my-domain.com
==================
Thank you for registering, test. [/color]
In summary, these variables worked.
- field 5 = $bbuserinfo[field5]
- field 6 = $bbuserinfo[field6]
- username = $bbuserinfo[username]
username = $username
- email = $bbuserinfo[email]
email = $userinfo[email]
As long as the data is being displayed correctly,
does it matter which variables I use?
BTW, thanks for all your help.
It's such a great feeling to be making progress!