示例#1
0
<?php

require_once "clases/AccesoDatos.php";
require_once "clases/familia.php";
if (isset($_SESSION['dni'])) {
    $arrayVotos = familia::TraerFamiliares();
    echo "<h2> Bienvenido Usuario Dni Nº:  " . $_SESSION['dni'] . "</h2>";
    ?>

<table class="table"  style="background-color: beige;">
	<thead>
		<tr>
			<th>Editar</th>
			<th>Borrar</th>
			<th>Ver</th>
			<th>Dni</th>
			<th>Provincia</th>
			<th>Nombre</th>
			<th>Sexo</th>
			<th>Direccion</th>
			<th>Localidad</th>
			<th>Parentesco</th>
			
			<th>Id</th>

		</tr>
	</thead>
	<tbody>

		<?php 
    foreach ($arrayVotos as $f) {