Código MySQL:
Ver originalSELECT sbc.Fecha
,sbc.Test
,sbc.tipo
,sbc.Aciertos
(SELECT fecha_test_aleatorio
as Fecha
, id_test_aleatorio
as Test
, "P" as tipo
, aciertos_aleatorio
as Aciertos
FROM tests_aleatorios_hechos
WHERE usuario_hace_test_aleatorio
='$id_usuario' SELECT fecha_test_profesor
as Fecha
, id_test_profesor_hecho
as Test
, "A" as tipo aciertos_test_profesor
as Aciertos
FROM tests_profesor_hechos
WHERE usuario_hace_test_profesor
='$id_usuario') as sbc
Código PHP:
Ver original {
for($f=0;$f<count($fila);$f++) {
echo $fila[$f]["Fecha"]." ".
$fila[$f]["Test"]." ".
$fila[$f]["tipo"]." ".
$fila[$f]["Aciertos"]."<br />";
}
}
A ver si te sirve....