Results 1 to 3 of 3

Thread: How to display the name when login or sign up successfully
      
   

  1. #1
    zhaohx02 is offline Staff Sergeant
    Join Date
    Apr 2010
    Posts
    42

    Default How to display the name when login or sign up successfully

    Hello!
    I have a question, how to display user name or full name on the top right every page when visitor loged in or signed up successfully?
    (display full name is better)

    and
    can I modify the full name to Nick name? If I modify it, can the sign up work correctly? I have modify the "change password" button text to "submit", then the page cannot display correctly. it takes me long time to
    correct it, so I am afraid to try modify other function style.
    but I want my website looks pretty.

    my website is www.yayalearn.com

    best regards
    Lucy

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: How to display the name when login or sign up successfully

    Currently you can only display the username.

    Add this text where you want it to appear:

    Hello '.$_SESSION['username'].'

    Format it as you like.


    Right click the text, select HTML, and add the following in the text HTML:

    In the Before Tag:

    <?php
    echo '


    in the After Tag,

    ';
    ?>

    Of course, this will only work in those pages that are protected, and only after they have loggen in.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    zhaohx02 is offline Staff Sergeant
    Join Date
    Apr 2010
    Posts
    42

    Default Re: How to display the name when login or sign up successfully

    Thank you very much. It works now.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49