0
functions.php
の関数をaccueil.php
に含めたいが、機能しません。HTMLで彼女を実行するときにPHP関数が機能しない
私のhtmlコードを参照してください:
<div class="milieudepage">
<table>
<tr>
<th> Equipe 1 </th>
<th> Equipe 2 </th>
<th> Drapeau 1 </th>
<th> Drapeau 2 </th>
<th> Score 1 </th>
<th> Score 2 </th>
<th> Buvettes </th>
<th> Volontaires </th>
</tr>
<?php
include("functions.php");
AfficheMatch();
?>
</table>
</div>
functions.php
で私のPHPコードを参照してください:
<?php
include 'connect.php';
function AfficheMatch()
{
echo "coucou";
$req = $bdd->prepare("SELECT * FROM Equipe");
$req->execute();
while($donnees = $req->fetch())
{
echo '<tr><th>'$donnees['pays']'</th><th>'$donnees['drapeau']'</th></tr>';
}
}
?>
明確にするために、あなたは「coucou」でさえそれを見ないでしょうか? – aaronofleonard
'functions :: AfficheMatch();' –
ウェブページを「ソース」で見るとどうなりますか? –