Results 1 to 4 of 4

Thread: view user information

  1. #1
    Join Date
    Oct 2008
    Posts
    42
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default view user information

    I need code

    when I click on any username
    view his/her information in my database

    e.g. ip, email, registration date . . . etc

  2. #2
    Join Date
    Nov 2008
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    http://www.php-mysql-tutorial.com/

    I doubt anyone would simply write up a script for no other reason than you need it with not so little as a Thank You. Perhaps you would be interested in something like phpBB or VBulletin?

    The page I linked above is a great place to start, as well as tizag.com.

  3. #3
    Join Date
    Oct 2008
    Posts
    42
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    hi,


    this is my fuuny simple script

    http://bhl.43i.net/

    but till now if I click on any user, the link drive me to the article itself.Plz see LAST MAMBERS at right-side


    I have another problem in BODY textarea. when I write my article and need to go to new pragraph by clicking (Enter Button). My article viewed in only one pragraph.

    --------------------------------------------------------------------------------

  4. #4
    Join Date
    Nov 2008
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by vividona View Post
    I have another problem in BODY textarea. when I write my article and need to go to new pragraph by clicking (Enter Button). My article viewed in only one pragraph.
    --------------------------------------------------------------------------------
    The nl2br() function would fix that. It converts new lines into <br /> tags.

    For example
    PHP Code:
    <?php
    $text 
    "Line 1. \n Line 2. \n Line 3. \n";
    echo 
    nl2br($text);
    ?>
    Would output this
    Code:
    Line 1. 
    Line 2. 
    Line 3.

Bookmarks

Posting Permissions

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