Profile Fields are stored in the user information array called $bbuserinfo.
You could use: $bbuserinfo[fieldX]
In general, if you are not sure how a variable is called, look in the php-file and in the template, which array's are being used. Then TEMPORARY add the following code to your php script:
PHP Code:
echo "<br />Contents of myarray: <pre>";print_r($myarray);echo "</pre>";
Replace myarray with the array you want to inspect.
PS Do this on a testboard, not a live board.