pues igual que has echo aqui pero con la session de privilegios
<?php
session_start();
if (!isset($_SESSION['username'])){
header("Location: login.php");
}
?>
if (isset($_SESSION['privilegios']) && $_SESSION['privilegios'] == 'root'){
// CONTENIDO SOLO PARA ROOT
}
Código PHP:
Ver originalecho("<tr>\n");
echo("<td width='5%'>" . $row["tecnologia"] . "</td>\n");
echo("<td width='5%'>" . $row["equipo"] . "</td>\n");
echo("<td width='10%'>" . $row["nombre"] . "</td>\n");
echo("<td width='5%'>" . $row["serial_mv"] . "</td>\n");
echo("<td width='5%'>" . $row["serial_e"] . "</td>\n");
echo("<td width='5%'>" . $row["cod_m"] . "</td>\n");
echo("<td width='5%'>" . $row["cod_p"] . "</td>\n");
echo("<td width='10%'>" . $row["fecha_i"] . "</td>\n");
echo("<td width='10%'>" . $row["usuario_i"] . "</td>\n");
echo("<td width='10%'>" . $row["com_i"] . "</td>\n");
echo("<td width='5%'>" . $row["fecha_s"] . "</td>\n");
echo("<td width='5%'>" . $row["usuario_s"] . "</td>\n");
echo("<td width='10%'>" . $row["com_s"] . "</td>\n");
if (isset($_SESSION['privilegios']) && $_SESSION['privilegios'] == 'root'){
echo("<td width='5%'><a href='borrar.php?id=$id' class='estilo'><img src='images/eliminar.png' title='Eliminar'></a></td>\n");
echo "</tr>";
}
}
echo "</table>";