?> <option value='<? echo $e['id']; ?>' <? if($e['id']==$value['id_est']) echo "selected"; ?>><? echo $e['nom']; ?></option> <?php } ?> </select> </td> <td><?php if ($per[0]['eliminar'] == 1) { echo "<a onclick=\"toast('<span>¿Seguro Desea Borrar usuario?</span><a class="btn-flat yellow-text" href="?op=delete&id=" . $value['id'] . "">Confirmar<a>', 5000)\"><i class='large mdi-content-clear'></i></a>"; } ?> </td> </tr> <? } ?> </table> </div> <footer class='blue'> <?php footer_html(); ?> </footer> </body> </html>
<?php $PAGE_FOOTER_HTML = footer_html(); function footer_html() { $html = "</div>\n\n"; // main_content_box end $html .= "<div id='footer'>Copyright © 2010 Nik Youdale, Amanda Chow, EE&T UNSW. All rights reserved.</div>"; $html .= "</div>\n"; // page box end return $html; }