对于我的系统,当我从Departments(下拉列表)中选择部门名称和程序(下拉列表)中的程序名称时,它应该生成一个表 - 在php中读取ax excel文件。我试过只读一个excel文件,它的工作原理。如何在PHP和MySQL中将选择与下面的文件连接?
我在阅读excel文件时找到的代码如下:
阅读Excel文件
<?php
include 'reader.php';
$excel = new Spreadsheet_Excel_Reader();
?>
Sheet 1:<br/><br/>
<table border="1">
<?php
$excel->read('prog.xls'); // set the excel file name here
$x=1;
while($x<=$excel->sheets[0]['numRows']) { // reading row by row
echo "\t<tr>\n";
$y=1;
while($y<=$excel->sheets[0]['numCols']) {// reading column by column
$cell = isset($excel->sheets[0]['cells'][$x][$y]) ? $excel->sheets[0]['cells'][$x][$y] : '';
echo "\t\t<td>$cell</td>\n"; // get each cells values
$y++;
}
echo "\t</tr>\n";
$x++;
}
?>
</table><br/>