Пример #1
0
<!DOCTYPE html>
<html>
    <head>
        <title>Lista Accesorio</title>
        <link href="../css/main.css" rel="stylesheet" type="text/css"/>
    </head>
    <body>
        <h1>Registro de Accesorios</h1>
        <hr>
        <a href="nuevo.php">Nuevo Accesorio</a>
        <?php 
require_once realpath(__DIR__ . '/../app/entity/EntityAccesorios.php');
$listAccesorios = EntityAccesorios::getAllAccesorio();
?>
        <hr>
        <table>
            <thead>
            <tr>
                <th>Nombre</th>
                <th>Estado</th>
                <th>Accion</th>
            </tr>
            </thead>
        <?php 
foreach ($listAccesorios as $index) {
    ?>
            <tr>
                <td><?php 
    echo $index['accesorio_nombre'];
    ?>
</td>
Пример #2
0
<?php

require_once realpath(__DIR__ . '/app/entity/EntityAccesorios.php');
print_r(EntityAccesorios::getAllAccesorio());