09-01-2009, 01:16 AM
|
#1 (permalink)
|
|
The Wanderer
Join Date: Aug 2009
Posts: 15
Thanks: 11
|
Extra IP account.
Well, i was trying to find a way to keep track of how many account my user's have and display. here is the code i have.
PHP Code:
<?php
$aka3 = $_SERVER['REMOTE_ADDR'];
$multi = mysql_query("SELECT * FROM members WHERE aka3 = '$aka3'")or die(mysql_error());
if ($multi >1){
}
while($row = mysql_fetch_array($multi)){
echo $row['setname'];
}
?>
This code is actually working to a certain extent. the problem is it only display MY extra accounts i have to me.
I want it to display other people that have the extra account.
|
|
|
|