Online List

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Online List

    Hey i need a little help i want to get my online list to show as follow

    User - Owner
    Where - Stats Stats (here i want it to give a link not only text)
    Mood - Gr8

    who can help with the link for online list please
    ________________
    Jacques
    jacques@gw-designs.co.za
    http://coding.biz.tm
    Come join and lets make it a place to learn all the noobies how to code
    __________________

    NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

    #2
    Originally posted by riderz View Post
    Hey i need a little help i want to get my online list to show as follow

    User - Owner
    Where - Stats Stats (here i want it to give a link not only text)
    Mood - Gr8

    who can help with the link for online list please
    in the arawap lava update in user profile there is a go there code,just mod it to suite the online list.

    click here to join blingywap.co.za
    http://blingywap.co.za


    IF YOU NEED HELP JUST ASK AND ALWAYS SAY THANK YOU!

    Comment


      #3
      is "go here" function... I think....
      if like my post click:

      http://coding-talk.com/images/totall...ost_thanks.gif

      Comment


        #4
        thats what i said.

        click here to join blingywap.co.za
        http://blingywap.co.za


        IF YOU NEED HELP JUST ASK AND ALWAYS SAY THANK YOU!

        Comment


          #5
          CREATE TABLE IF NOT EXISTS `ibwf_online` (
          `id` int(10) NOT NULL auto_increment,
          `userid` int(100) NOT NULL default '0',
          `actvtime` int(100) NOT NULL default '0',
          `place` varchar(50) NOT NULL default '',
          `placedet` varchar(255) NOT NULL default '',
          PRIMARY KEY (`id`),
          UNIQUE KEY `userid` (`userid`)
          ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=26760 ;

          in `placedet` varchar(255) NOT NULL default '', is inserted the detail

          ex: addonline(getuid_sid($sid),"Sex","sex.php?action=$ action"); OR
          addonline(getuid_sid($sid),"View Profile","profile.php?action=$action&who=$who" );

          and whit this u can easily make what u wanted
          <?php unlink('World/Europe/Romania.country'); ?>

          Comment


            #6
            i should think there is a field call placedet in online table...
            Code:
              addonline(getuid_sid($sid),"viewing ".$whonick." profile","index.php?action=viewuser&amp;who=$who&amp;sid=");
            in the profile  select the placedet colum... $purl = mysql_fetch_array(mysql_query("SELECT placedet FROM ibwf_online WHERE  userid='".$who.""")); echo "<a href=\"$purl$sid\">Go there</a>";
            use ya head

            R.M.C
            ----------
            PHP Adovocate B)

            Comment

            Working...
            X