maasters Posted July 28, 2008 Report Share Posted July 28, 2008 Man sanāk salīdzināt datus no divām tabulām. Es mēģinu dabūt ārā online lietotājus. Ielogojušos lietotājus es varu dabūt jau ārā no lietotāju datubāzes, bet viesus man ir atsevišķi jāielogo. Tad nu man vajag ~ tā: if(guest_online_ip != member_online_ip) { echo guest_online_ip }Problēma sākas, ka es nezinu, kā to reāli pārbaudīt. Itkā būtu divi cikli, bet vienu iekš otra jau nevar laist cauri... Kādi priekšlikumi? Link to comment Share on other sites More sharing options...
werd Posted July 28, 2008 Report Share Posted July 28, 2008 Šķiet tu pārāk gribi visu sarežģīt. $quest_online_ip = $_SERVER['REMOTE_ADDR']; $sql = mysql_query("SELECT * FROM users WHERE ip = '".$quest_online_ip."' "); $count = mysql_num_rows($sql); if($count > 0){ $data = mysql_fetch_assoc($sql); $username = $data['username']; echo 'Sveiks '.$username; } else{ echo 'Sveiks '.$quest_online_ip; } Link to comment Share on other sites More sharing options...
Recommended Posts