If you want to greet the user personally, if registered, from your own home-made module, here is the code that does it in PHP-Nuke (see Getting username in PHP script):
<?php if (!isset($mainfile)) {include("mainfile.php"); } include ("header.php"); if(!is_array($user)) { $user_get = base64_decode($user); $user_get = explode(":", $user_get); $user_name = "$user_get[1]"; } else { $user_name = "$user[1]"; } if($user_name == "") {$user_name="Anonymous";} echo "Welcome, $user_name"; include ("footer.php"); ?> |
Prev | Home | Next |
How to make the Encyclopedia international | Up | How to correct thousands of users fields |
Help us make a better PHP-Nuke HOWTO!Want to contribute to this HOWTO? Have a suggestion or a solution to a problem that was not treated here? Post your comments on my PHP-Nuke Forum! Chris Karakas, Maintainer PHP-Nuke HOWTO |