Ultimi inserimenti
Le ultime foto inserite dagli utenti
$sqlultimi = "select foto.idfoto,foto.tipocatastrofe,foto.oggetto,foto.regione,foto.provincia,foto.citta,foto.collocazione,foto.datascatto,foto.autore,foto.datainserimento,utenti.nome,utenti.cognome from foto join utenti on utenti.idutente = foto.idutente order by datainserimento desc limit 18";
$risultati = mysql_query ( $sqlultimi, $conn );
while ($row = mysql_fetch_array($risultati)) {
$idfoto = $row["idfoto"];
$tipocatastrofefoto = $row["tipocatastrofe"];
$oggettofoto = $row["oggetto"];
$regionefotoa = $row["regione"];
$provinciafotoa = $row["provincia"];
$cittafotoa = $row["citta"];
$collocazionefotoa = $row["collocazione"];
$datascattofotodb = $row["datascatto"];
$autorefotoa = $row["autore"];
$datainserimentofotodb = $row["datainserimento"];
$nomefotoa = $row["nome"];
$cognomefotoa = $row["cognome"];
$regionefoto = str_replace("'", "\'", $regionefotoa);
$provinciafoto = str_replace("'", "\'", $provinciafotoa);
$cittafoto = str_replace("'", "\'", $cittafotoa);
$collocazionefoto = str_replace("'", "\'", $collocazionefotoa);
$autorefoto = str_replace("'", "\'", $autorefotoa);
$nomefoto = str_replace("'", "\'", $nomefotoa);
$cognomefoto = str_replace("'", "\'", $cognomefotoa);
//converto DATASCATTOFOTO aaaa-mm-gg in gg-mm-aaaa
$anno = substr($datascattofotodb, 0, 4);
$mese = substr($datascattofotodb, 5, 2);
$giorno = substr($datascattofotodb, 8, 2);
$datascattofoto = $giorno."/".$mese."/".$anno;
//converto DATAINSERIMENTO aaaa-mm-gg in gg-mm-aaaa
$annoins = substr($datainserimentofotodb, 0, 4);
$meseins = substr($datainserimentofotodb, 5, 2);
$giornoins = substr($datainserimentofotodb, 8, 2);
$datainserimentofoto = $giornoins."/".$meseins."/".$annoins;
?>
} //chiudo while
?>