<?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"); ?>
<?php include ("menu.php"); ?>
<?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 "
"; } mysql_free_result ($query); ?>
<?php include ("end_page.php");?>