Estas son las tablas con la información:
Este es el resultado esperado:
Pero este es el resultado que me esta dando:
El código es este:
Código PHP:
Ver original<?php
//Conexion
require ("conexion.php");
//Consulta
$query = "
SELECT mbt.id, mbt.project_id, mbt.summary, mbt.date_submitted, mbt.status, mcfst.bug_id, mcfst.field_id, mcfst.value
FROM tabla_1 mbt, tabla_2 mcfst
WHERE mbt.project_id = mcfst.bug_id
AND mbt.project_id = 64
AND mbt.status < 50
AND mcfst.field_id = 5
ORDER BY mbt.id ASC";
//Enviar consulta a Mysql o detectar si hay error
;?>
<table border="1px solid black">
<tr>
<th>Folio</th>
<th>ODT</th>
<th>Descripción</th>
<th>Fecha de creación</th>
<th>Folio de reportes</th>
</tr>
<tr>
<td><a href="http://localhost/mantis/view.php?id=<?php echo $resEmp['id'] ; ?>"><?php echo $resEmp['id'] ; ?></a></td>
<td><?php echo $resEmp['value']; ?></td>
<td><?php echo $resEmp['summary']; ?></td>
<td><?php echo $resEmp['date_submitted']; ?></td>
<td><?php echo $resEmp['value']; ?></td>
</tr>
<?php } ?>
</table>
¿Alguna idea? Gracias!