Proba usando un array asociativo devuelto por mysql_fetch_array
Tene cuidado porque tambien habias escrito mal un par de tags HTML pusiste </th> en lugar de <tr>.    
Código PHP:
Ver original- echo "<table id='td' border='1'  
-         bordercolor='#000000'  
-         name='resultado'  
-         cellpadding='0'  
-         cellspacing='0'> 
-         <tr> 
-             <th>TELEFONO</th> 
-             <th>CEDULA</th> 
-             <th>NOMBRE</th> 
-             <th>DISTRITO</th> 
-             <th>DIRECCION</th> 
-             <th>SALARIO</th> 
-         </tr>";  
- { 
-     echo "<tr>"; 
-         echo "<td>".$fila['telefono']."</td>"; 
-         echo "<td>".$fila['cedula']."</td>"; 
-         echo "<td>".$fila['nombre']."</td>"; 
-         echo "<td>".$fila['distrito']."</td>"; 
-         echo "<td>".$fila['direccion']."</td>"; 
-         echo "<td>".$fila['salario']."</td>"; 
-     echo "</tr>"; 
- } 
- echo "</table>"; 
Esperso sirva, saludos.