-2
私のHTMLテーブルでphp関数を呼び出すのが難しいです。内にphp関数を呼び出す
<table>
<thead class="table">
<tr><th>Letter</th><th>Sender</th></tr>
</thead>
<tbody>
<?php require_once 'assets/userFunctions.php';
foreach ($myCvs as $cv){
echo "<tr>
<td>{$cv['cv']}</td>
<td>getUsernameById({$cv['senderid']})</td>
</tr>";
}
?>
</tbody>
</table>
そしてテーブルに私は例えばgetUsernameById(2)
を参照してください...
私は問題は ''に関連していないことを追加します実際には "phpの' echo'文の中で関数を呼び出すことになります。 – Dekel