Salve a tutti;
ho usato la libreria excel_reader2.php per estrarre i dati da un file excel si da formattarli in una pagina web con una tabella.
Allego il codice asp funzionante su Easy PHP!!
Codice PHP:
<html>
<head> <link href="stilelibri.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
// Sopprimo gli errori del php
error_reporting(0);
// Includo la libreria
require_once '\inc\excel_reader2.php';
$data = new Spreadsheet_Excel_Reader();
$data->setOutputEncoding('CP1251');
$data->read('Librisitedef.xls');
error_reporting(E_ALL ^ E_NOTICE);
echo "<table class= 'materia'>";
echo "<tr>";
echo "<td>".$data->sheets[1]['cells'][1][1]."</td>";
echo "</tr>";
echo "</table>";
echo "<br>";
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"4\">";
echo "<tr>";
echo "<td class='tdtitolo'>" .$data->sheets[1]['cells'][2][1]."</td>";
echo "<td class='tdtitolo'>".$data->sheets[1]['cells'][2][2]."</td>";
echo "<td class='tdtitolo'>".$data->sheets[1]['cells'][2][3]."</td>";
echo "<td class='tdtitolonosp'>".$data->sheets[1]['cells'][2][4]."</td>";
echo "<td class ='tdtitolosp'>".$data->sheets[1]['cells'][2][5]."</td>";
echo "</tr>";
for ($i = 3; $i <= $data->sheets[0]['numRows']; $i++) {
echo "<tr>";
for ($j = 1; $j <= $data->sheets[1]['numCols']=3; $j++) {
echo "<td class='tdelenco'>".$data->sheets[1]['cells'][$i][$j]."</td>";
}
for ($j = 4; $j <= $data->sheets[1]['numCols']=4; $j++) {
echo "<td class='tdelenconosp'>".$data->sheets[1]['cells'][$i][$j]."</td>";
}
for ($j = 5; $j <= $data->sheets[1]['numCols']=5; $j++) {
echo "<td class='tdelencosp'>".$data->sheets[1]['cells'][$i][$j]."</td>";
}
echo "</tr>";
}
echo "</table>";
?>
</body>
</html>
Bene. Una fatto l'upload ftp, testata, la pagina non funziona.
In locale sì... sul web no... Grazie per l'aiuto