| |
LOGROS
|
|
| |
include("con_mysql.php");
$result = mysql_query("SELECT num,fecha,resp,titulo,rut,nombres,apellidos FROM logros,prof_datos WHERE resp = rut ORDER BY num DESC", $link);
while ($row=mysql_fetch_array($result))
{
echo '';
echo ' '.$row["titulo"].' | ';
echo ''.date("d-m-y",time($row["fecha"])).' | ';
echo ' ';
}
?>
|
|