コード例 #1
0
ファイル: usuario.php プロジェクト: pedrubiano/pos
    ?>
								<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(&apos;<span>¿Seguro Desea Borrar usuario?</span><a class=&quot;btn-flat yellow-text&quot; href=&quot;?op=delete&id=" . $value['id'] . "&quot;>Confirmar<a>&apos;, 5000)\"><i class='large mdi-content-clear'></i></a>";
}
?>
</td>

					</tr>
				<? }
			?>
		</table>
	</div>	
	
	

	<footer class='blue'>      
      <?php 
footer_html();
?>
    </footer>
</body>
</html>
コード例 #2
0
<?php

$PAGE_FOOTER_HTML = footer_html();
function footer_html()
{
    $html = "</div>\n\n";
    // main_content_box end
    $html .= "<div id='footer'>Copyright &copy; 2010 Nik Youdale, Amanda Chow, EE&T UNSW. All rights reserved.</div>";
    $html .= "</div>\n";
    // page box end
    return $html;
}