include("inc/header.php"); ?>
//include("inc/header_home.php"); ?>
include ("/admin/phpdatasource.inc");
include ("/admin/phpfunctions.inc");
?>
if (!strlen($step)) $step = 1;
if ($step == "1")
{
if (!isset($numc))
{
$numc=1;
$begin=0;
}
if (!isset($pagina)) $pagina=1;
// Serve solo per contare il numero totale
$pre_query="SELECT * FROM gallery";
$result_num= mysql_query($pre_query,$db);
$tot_ricerca=mysql_num_rows($result_num);
if ($tot_ricerca > 0)
{
$num_pagine=ceil($tot_ricerca / $numc);
// Se la pagina è la 1 partiamo da 0
$begin=($pagina-1) * $numc;
$query="SELECT * FROM gallery order by data desc LIMIT $begin, $numc";
$result=mysql_query($query,$db);
if (mysql_num_rows($result))
{
?>
while ($myrow=mysql_fetch_array($result))
{
$this_id=$myrow['id'];
$query_f="SELECT * FROM photo_gallery where idGallery= '$this_id' order by id LIMIT $begin, $numc";
$result_f=mysql_query($query_f,$db);
if (mysql_num_rows($result_f))
{
$myrow_f = mysql_fetch_array($result_f);
$this_foto=$myrow_f['foto'];
//$temp = explode (".",$this_foto);
//$filename = $temp[0]."_little.".$temp[1];
}
list ($aa,$mm,$gg) = explode("-",$myrow['data']);
$this_data = $gg."/".$mm."/".$aa;
$this_titolo=$myrow['titolo'];
$this_descrizione=$myrow['descrizione'];
$this_cliente=$myrow['cliente'];
$size = strlen ($this_descrizione);
if($size > 100) {
$cutsize = strrpos (substr ($this_descrizione, 0, 100), "");
$this_descrizione_temp = substr($this_descrizione, 0, $cutsize);
$this_descrizione_new = ($this_descrizione."...");
}
else { $this_descrizione_new = $this_descrizione; }
//echo $testo_new;
?>
echo $this_data ?>: echo $this_titolo ?> echo $this_descrizione_new; ?> [Continua]
}
?>
}
}
else
{
echo "Nessun prodotto";
}
}
?>
|
|
|