PDA

View Full Version : Linking whos online from different sites..


stangpower
03-02-2003, 09:35 PM
Hello,

I was wondering if this would be possible.

Lets say I have several VB sites all related to mine and the sites are actually partnered. I would like the whos online from each site to link to each other. So the whos online would look like this:

WHO'S ONLINE FROM X.COM, XX.COM, and XXX.COM

What do you think? Possible?

Ian

EchoHype.com
03-02-2003, 09:40 PM
You'd need to connect to the database of each site, and then call the who's online code.

stangpower
03-02-2003, 09:41 PM
OK - can you maybe suggest what code to look at? - I can install hacks, but I cannot make them :p

Ian

EchoHype.com
03-02-2003, 09:44 PM
mysql_connect($CONF['localhost'], $CONF['NAME'], $CONF['PWORD']); # Connect
mysql_select_db($CONF['DBNAME']); # Database

that's the mysql code to connect, which you'd include when scripting and such. I'm not too sure about the "whos online" variable.

stangpower
03-02-2003, 09:46 PM
Thanks - where is the above code found?

Ian

EchoHype.com
03-02-2003, 09:56 PM
in my head, lol.

it's just a basic code used to connect to a db.

stangpower
03-02-2003, 09:57 PM
Ohh ok but where do I place those lines of code?

Ian

EchoHype.com
03-02-2003, 10:00 PM
well, if you want to call the online users on lets say your homepage, you place that inside the table or whatever you want it to be called in, then call the online variable for that forum.