redbeanphp - 如何将外键的id显示为文本

时间:2017-04-25 12:42:50

标签: php

我在实施中遇到了问题。 我想在下拉列表中显示外键的所有条目,但它只显示id。我正在使用redbeanphp。也许有人知道如何在这里实现它?

$shared = R::findAll( 'template_workers');

echo ('<table class="table">
                <thead class="thead-inverse">
                    <tr> 
                        <th>#</th>
                        <th>phrase</th>
                        <th>name</th>
                    </tr>
                </thead> 
                <tbody>');
      foreach($shared as $row){
        echo '<tr>';
        echo '<th class="col col-lg-2">'.$row['id'].'</th>';
        echo '<td>'.$row['template_id'].'</td>'; 
        echo '<td>'.$row['workers_id'].'</td>'; 
    }
    echo ('</tbody></table>');

提前谢谢。

0 个答案:

没有答案