aka les dejo la funcion
Código PHP:
<?php
echo '<br>';
echo '<table align="left">';
echo '<tr>';
echo '<td>'.("Usted esta Autentificado como: ").'</td>';
echo '</tr>';
echo '<tr>';
echo '<td>'.$_SESSION["autentificado"].'</td>';
echo '</tr>';
echo '<tr>';
echo '<td>'.("Hora Actual :");
$hora = getdate(time());
echo( $hora["hours"] . ":" . $hora["minutes"] . ":" . $hora["seconds"] );
echo '</tr>';
echo '<tr>';
echo '<td>'.("fecha Actual :");
echo date( "d:m:Y").'</td>';
echo '</tr>';
echo '</table>';
?>
podrían indicarme el porque de antemano muchas gracias