WIK Posted February 6, 2021 Report Posted February 6, 2021 am o coloana din baza de date cu formatul ip/ora:minut:secunda/data 0.0.0.0 03:30:59 06/02/2021 acum ce metoda as putea sa abordez in php intr-asa fel incat sa pot verifica doar IP-ul cu alt ip ex: <?php $ip = $_SERVER['REMOTE_ADDR']; $output = "IP DIN BAZA DE DATE"; if($ip == $output){ echo "acest ip corespunde cu cel din baza de date"; }else{ echo "acest ip nu corespunde cu cel din baza de date"; } Quote
Moderators Dragos Posted February 6, 2021 Moderators Report Posted February 6, 2021 <?php $ipdb = "0.0.0.0 03:30:59 06/02/2021"; //aici preiei din baza de date preg_match('/(.*) (.*) (.*)/', $ipdb, $matches); echo $matches[1]; //IP echo $matches[2]; //ora echo $matches[3]; //data $ip = $_SERVER['REMOTE_ADDR']; if($ip == $matches[1]){ echo "acest ip corespunde cu cel din baza de date"; }else{ echo "acest ip nu corespunde cu cel din baza de date"; } 1 1 3 Quote