php显示在我的html页面中,并且不显示来自我的数据库的数据

时间:2018-03-20 12:42:26

标签: php html mysql

我是PHP的新手,我不明白尝试在localhost中显示数据库时遇到的问题。

实际上浏览器显示我的PHP代码的一部分 phph error

这是与问题链接的代码:

<?php $reponse = $connexion->query('SELECT * FROM projet_sp');
    ?>

    <table>
            <tr>
                                <th class="CelluleTab11"> Num dossier </th>
                                <th class="CelluleTab12"> Nom projet </th>
                                <th class="CelluleTab13"> DAS </th>
                                <th class="CelluleTab14"> Categorie projet </th>
                                <th class="CelluleTab15"> theme </th>
                                <th class="CelluleTab16"> Pole leader </th>
                                <th class="CelluleTab17"> Porteur </th>
                                <th class="CelluleTab18"> College porteur </th>
            </tr>
                            <?php//On affiche les lignes du tableau une à une à l'aide d'une boucle
                while ($donnees = $reponse->fetch())
                {
                echo
                "<td class='CelluleTab2'>". $donnees['N?']."</td>"
                "<td class='CelluleTab2'>". $donnees['Nom du projet']."</td>"
                "<td class='CelluleTab2'>" .$donnees['DAS']."</td>"
                "<td class='CelluleTab2'>". $donnees['Cat. de projet']."</td>"
                "<td class='CelluleTab2'>". $donnees['Th?me']."</td>"
                "<td class='CelluleTab2'>" .$donnees['P?le Leader']."</td>"
                "<td class='CelluleTab2'>" .$donnees['Porteur']."</td>"
                "<td class='CelluleTab2'>". $donnees['College Porteur']."</td>";
                }
             ?>

我对这个问题的根源没有任何线索。

如果有人可以提供帮助,我将感激不尽。

谢谢!

编辑:这不是我在页面中显示的所有代码,只是我的HTML标签内部的PHP的一部分,请参见图片链接。

0 个答案:

没有答案