Este es el resultado esperado:
Pero este es el resultado que me esta dando:
El código es este:
Código PHP :
<?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 $queEmp = mysql_query($query, $conexion) or die(mysql_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> <?php while ($resEmp = mysql_fetch_assoc($queEmp)) { ?> <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>
El problema está en que no muestra los datos en mcfst.value "ODT y Folio de reportes". Además, el date_submitted "Fecha de creación" no me muestra los valores en el formato fecha. ¿Alguna idea? Gracias!