Users online, which updates.

Results 1 to 9 of 9
  1. #1
    Zephyr Studios PRIZM is offline
    Grand MasterRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Users online, which updates.

    Hey guys,
    Basicly I am getting tired of I need to refresh my site to see my users online (I know I can just see it via. :about, and in my emulator) but I mean when a user join I can see another users joins without refreshing my page. Does anyone have the script, and can somebody show me where to add it? I will be so happy. :D

    Thanks,
    Prizm


  2. #2
    Zephyr Studios PRIZM is offline
    Grand MasterRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Re: Users online, which updates.

    bump.

  3. #3
    Zephyr Studios PRIZM is offline
    Grand MasterRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Re: Users online, which updates.

    bump.

  4. #4
    Lurking around Clawed is offline
    Grand MasterRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: Users online, which updates.

    This is easy to do, all you need a simple jQuery script & an external file eg: online.php

  5. #5
    Sorcerer Supreme Giles121 is offline
    Member +Rank
    Jul 2011 Join Date
    EnglandLocation
    291Posts

    Re: Users online, which updates.

    code a refresh script and put it to users online

  6. #6
    I don't even know azaidi is offline
    Grand MasterRank
    Apr 2010 Join Date
    the NetherlandsLocation
    2,065Posts

    Re: Users online, which updates.

    Look at how PhoenixPHP does it (I don't have a better example, sorry)

  7. #7
    Lurking around Clawed is offline
    Grand MasterRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: Users online, which updates.

    Quote Originally Posted by azaidi View Post
    Look at how PhoenixPHP does it (I don't have a better example, sorry)
    Didn't know PhoenixPHP did online refresh haha.

    You want something like this:

    Code:
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript">
    	jQuery.noConflict();
    	var auto_refresh = setInterval(function() {
    		jQuery("#jQueryRefreshOnlineCount").load("online.php").fadeIn("slow");
    	}, 5000); // refresh every 5000 milliseconds
    </script>
    
    <div id="jQueryRefreshOnlineCount"><?php include("online.php"); ?></div>
    Last edited by Clawed; 24-02-13 at 04:45 PM.

  8. #8
    Zephyr Studios PRIZM is offline
    Grand MasterRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Sv: Users online, which updates.

    Thanks guys!

    Sent from Tapatalk 2.

  9. #9
    Lurking around Clawed is offline
    Grand MasterRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: Users online, which updates.

    Welcome



Advertisement