Mysql
 sql >> Database >  >> RDS >> Mysql

Il mio IP è nel mio database, in tal caso trova il timestamp

Questo dovrebbe fare il trucco, dovrebbe ottenere il timestamp e convertirlo in un formato leggibile dall'uomo, potresti anche voler cercare il PHP date() funzione per regolare il $date_format a proprio piacimento che può essere trovato qui:http://php.net/manual/ it/function.date.php

$ip = $_SERVER['REMOTE_ADDR']; // Fetch IP

$query = mysql_query("SELECT `timestamp` FROM `votes` WHERE (`ip` = '$ip')") or die(mysql_error()); // Queries IP

$amount = mysql_num_rows($query); // Amount of times listed (rows)

if ($amount > 0) { // If exists

    $row = mysql_fetch_array($query);

    $timestamp = $row['timestamp'];

    $date_format = 'm F \a\t g:ia';
    $date = date("$date_format", $timestamp); // Converts timestamp

    echo("Your IP Address (".$ip.") is already listed at ".$date."");

} else {

    echo("Your IP Address is not currently listed");

}