Le e añadido lo siguiente a mi codigo porque creo que no se ha entendido bien:
Código PHP:
Ver original<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
or
die("Fallo en el establecimiento de la conexion"); or
die("Error en la seleccion de la base de datos"); or
die("Error en la consulta SQL"); ?>
<table border="1">
<tr>
<th><th>
<th>NIF</th>
<th>NOMBRE</th>
<th>APELLIDOS</th>
<th>SALARIO</th>
<th>ALTA</th>
<th>DEPARTAMENTO</th>
</tr>
<?php
foreach ($result as $row){?>
<tr>
<td><input type="radio" name="RADIO_EMP"></td>
<td><?php echo $row["NIF"]; ?></td>
<td><?php echo $row["NOMBRE"]; ?></td>
<td><?php echo $row["APELLIDOS"]; ?></td>
<td><?php echo $row["SALARIO"]; ?></td>
<td><?php echo $row["ALTA"]; ?></td>
<td><?php echo $row["DEPARTAMENTO"]; ?></td>
</tr>
<?php } ?>
</table>
<br>
<a href="index.php">Volver a la pantalla de inicio</a>
</body>
</html>
Necesito una solucion urgente por favor y gracias por vuestra ayuda