ZendFrameworkを使い始めています。私はあちこちでいくつかのチュートリアルを行ってきました。
私の見解の1つでは、次のコードブロックがあります。
<?php foreach($this->Instruments as $Instrument) : ?>
<tr>
<td><?php echo $this->escape($Instrument->nom);?></td>
<td><?php echo $this->escape($Instrument->idtypeofinstrument);?></td>
<td>
</td>
</tr>
<?php endforeach; ?>
idtypeofinstrument
は外部キーですが、現在はを表示するだけid
です。ユーザーにとってもっと明確なものを表示したいと思います。
私のテーブル:
+------------------+
| typeofinstrument |
+------------------+
| id | -- primary key
| typeofinstrument | -- what I want to display
+------------------+
+--------------------+
| instrument |
+--------------------+
| id | -- primary key
| name |
| idtypeofinstrument | -- foreign key
+--------------------+