Results 1 to 3 of 3

Thread: Online users-link to profile?

  1. #1
    Join Date
    Feb 2010
    Location
    Falkirk, Scotland
    Posts
    142
    Thanks
    21
    Thanked 4 Times in 4 Posts

    Question Online users-link to profile?

    i have recently been working on a login/registration script, and have inserted an option to view currently online users. each online user is inserted into a table which works fine:

    PHP Code:
    <table width="200" border="1" cellspacing="0" cellpadding="3">
          <tr>
            <td align="center"><strong><u>Online Users</u></strong></td>
            
          </tr>
          <?php
    while($rows=mysql_fetch_array($query)){
    ?>
          <tr>
            <td><? echo $rows['username']; ?>
              <div align="center"></div></td>
            </tr>
          <?php
    }
    ?>
        </table>
    i want to try and make every different username linked to the profile page of the corresponding username. the profile page url will be like http://www.shiftysplayground.co.cc/u...=&#39;username'.

    just wondering if anyone can help me on this? thanx in advance!
    Last edited by liamallan; 03-04-2010 at 02:08 AM.

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    PHP Code:
    <td>
    <?php 
       
    echo '<a href="http://www.shiftysplayground.co.cc/userinfo.php?user='.$rows['username'].'">'.$rows['username'].'</a>';
    ?>
    </td>
    assuming $rows['username'] is the value you use to id the profile page, of course.

  3. The Following User Says Thank You to traq For This Useful Post:

    liamallan (03-04-2010)

  4. #3
    Join Date
    Feb 2010
    Location
    Falkirk, Scotland
    Posts
    142
    Thanks
    21
    Thanked 4 Times in 4 Posts

    Default

    thanx mate, that is spot on! works like a dream, thanx again

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
  •