<?php require_once('configuration.php'); require_once('functions.php'); ?> <!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>PiHome</title> <meta name="description" content=""> <meta name="author" content=""> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="style.css"> </head> <body> <?php foreach($materials as $material=>$pin){ ?> <table> <tr> <td><?php echo $material; ?></td> <td>&nbsp;&nbsp;</td> <td><?php $pinState = getPinState($pin,$pins); ?></td> <td><div onclick="changeState(<?php echo $pin; ?>,this)" class="pinState <?php echo $pinState; ?>"></div></td> </tr> </table> <?php } ?> <script src="../lib/jquery.js"></script> <script src="../lib/script.js"></script> </body> </html>