Files
controls-web/controls-rework/OLD/manufacturing.php
2026-02-17 09:29:34 -06:00

83 lines
1.6 KiB
PHP

<!DOCTYPE html>
<?php
error_reporting(0);
require_once 'excel_reader2.php';
$data = new Spreadsheet_Excel_Reader("P:/2016 MILLLABREPORT/2016 crop day 3/milllab.xls");
?>
<html>
<head>
<title>Manufacturing</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="http://lasuca.com/images/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
table.excel {
border-style:ridge;
border-width:1;
border-collapse:collapse;
font-family:sans-serif;
font-size:16px;
margin: 0px;
width: 100%;
}
table.excel thead th, table.excel tbody th {
background:#CCCCCC;
border-style:ridge;
border-width:1;
text-align: center;
vertical-align:bottom;
}
table.excel tbody th {
text-align:center;
width:20px;
}
table.excel tbody td {
vertical-align:bottom;
height:15px;
}
table.excel tbody td {
padding: 0 3px;
border: 1px solid #000;
}
table tr {
padding: 0 3px;
border: 1px solid #000;
line-height: 20px;
border-collapse: collapse;
}
</style>
</head>
<body>
<div class="center">
<div class="header">
<h1>LASUCA CONTROLS</h1>
<p>Mill Lab Test Spreadsheet</p>
</div>
<div class="row">
<div class="col-3 menu">
<ul>
<li>
<a href="overview.php">Overview</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12">
<?php echo $data->dump($row_numbers=false,$col_letters=false,$sheet=0,$table_class='excel'); ?>
</div>
</div>
<?php include 'footer.php';?>
</div>
</body>
</html>