Here is a first try:
#include <Excel.au3>
Global $oExcel = _Excel_Open(True) ; Set this to False to let Excel run in the background
Global $oWorkbook, $aUsedRange
_ProcessWorkbook("C:\temp\test1.xlsx") ; Process workbooks 1 to 3
_ProcessWorkbook("C:\temp\test2.xlsx")
_ProcessWorkbook("C:\temp\test3.xlsx")
Func _ProcessWorkbook($sWorkbook)
$oWorkbook = _Excel_BookOpen($oExcel, $sWorkbook) ; Open the Workbook
$aUsedRange = _Excel_RangeRead($oWorkBook) ; Read all used cells
For $i = 0 To UBound($aUsedRange, 1) - 1 ; Process all rows of the Workbook
For $j = 0 To UBound($aUsedRange, 2) - 1
; Should the input be checked for valid data (empty cells ...)?
; Send the content to the browser here
Next
Next
_Excel_BookClose($oWorkbook, False)
EndFunc
Which Browser do you want to use?