It wasnt a file I was trying to get to work...
I wanted to know how I would get the information the user submitted to be displayed in a template format for regular users...
The viewbio.php file contains :
PHP Code:
<?php
if ($bbuserinfo['userid']!=0) {
eval("dooutput(\"".gettemplate("viewbio")."\");");
} else {
eval("dooutput(\"".gettemplate("unregviewbio")."\");");
}
?>
Can somebody tell me how I would achieve that?
Satan