Código:
<table width="712" border="0">
<?php do { ?>
<tr>
<td width="129"><?php echo $row_Pedidos['id_pedido']; ?></td>
<td width="100"><?php echo $row_Pedidos['fecha']; ?></td>
<td width="107"><?php echo $row_Pedidos['cliente_id']; ?></td>
<td width="130"><?php echo $row_Pedidos['producto_id']; ?></td>
<td width="160" widht="20">
<td width="60" widht="20"> </td>
</tr>
<?php } while ($row_Pedidos = mysql_fetch_assoc($Pedidos)); ?>
</table>
La cual muestra todos los pedidos ordenados. Pero yo quiero que el campo "cliente_id" relacionado con la tabla "clientes" muestre el campo "nombre" asociado a este id. lo mismo con el campo "producto_id"
hay alguna forma de mostrar los campos relacionados a estos id?
Gracias a todos!