Ciao non so come inserire queste info

Codice PHP:
while($result mysql_fetch_array($query)) {
echo 
" <tr><td>[b]Id:[/b] " $result['NUM'] </td>;
echo 
" <td>[b]Titolo:[/b] " $result['TRANSLATEDTITLE'] </td>;
echo 
" <td>[b]Anno:[/b] " $result['YEAR'] </td>;
echo 
" <td>[b]Genere:[/b] " $result['CATEGORY'] </td></tr>;
echo 
" <hr>\n"
così ovviemente non va, mancano info.

se fosse html e dati fissi metterei:

codice:
<table width="75%" border="1">
    <tr>
       <td width="25%">prima cella</td>
       <td width="75%">seconda cella</td>
   </tr>
</table>
ma essendo PHP non trovo modo di crearla correttamente