$bbuserinfo contains a lot of information, if you make a file in your forums directory called "test.php", and put this code in it:
PHP Code:
<?php
require_once("./global.php");
print_r($bbuserinfo);
?>
Then visit this file in your browser, you will see a load of mumbo jumbo, right click, view source, you will get a lot of stuff, like:
Quote:
Array
(
[userid] => 1
[temp] =>
[field1] => I like to code :P
[field2] => England
[field3] => Coding...
[field4] => ...more coding
[field5] => Male
[field6] => #0099FF
|
To use this field, just put
$bbuserinfo[FIELD]
So if you see:
[myfield] => Bla bla
You would use:
$bbuserinfo[myfield]
- Zero Tolerance