<?php include('funzioni/dbconnect.php'); mysql_query('set names utf8'); $query = mysql_query ("select * from materiali where id=$id") or die (mysql_error()); while ($row = mysql_fetch_array ($query)) { $nome = "$row[titolo]"; $page_title = "Educatamente - $nome"; } ?> <?php include ("head.php"); ?> <?php include ("sfondo.html"); ?>

Homepage --> Materiali --> <?php echo "$nome";?>

Materiali - <?php echo $nome; ?>

<?php mysql_query('set names utf8'); $query = mysql_query ("select * from materiali where id=$id") or die (mysql_error()); while ($row = mysql_fetch_array ($query)) { $descrizione = stripslashes (nl2br ($row[descrizione])); $dimensionefile = filesize("materiali/didattici/$row[file]"); if (strlen($dimensionefile) <= 6) {$dimensionefile = substr ($dimensionefile, 0, -3); $dimensionefile = "$dimensionefile kB";} if (strlen($dimensionefile) > 6) {$dimensionefile = $dimensionefile/1000000; $dimensionefile = substr ($dimensionefile, 0, -5); $dimensionefile = "$dimensionefile mB";} echo "

$dimensionefile"; $descrizione = stripslashes (nl2br ($row[descrizione])); echo "

$descrizione

Livello: scuola $row[livello]

"; if ($row[formato]=='pdf') {echo "

";} if ($row[formato]=='jpg') {echo "

";} echo "

"; } mysql_free_result ($query); ?>



<?php include ("end_page.php");?>