Affichage de la...LOGIN

Affichage de la page de détails du produit

1. La page de détails du produit affiche la page d'accueil

Créez un nouveau fichier marchandises.php avec le code suivant :

<?php
header("Content-type:text/html;charset=utf-8");
include "mysqli.php";
?>
<h1>商品列表</h1>
<div style="float: none;width: 600px">
<?php
    $sql="select *from goods";
    $result=$mysqli->query($sql);
    ?>
<table border="1" cellpadding="3" cellspacing="0" width="60%">
    <tr bgcolor="skyblue">
<?php
  while($row=$result->fetch_assoc()){
?>
<td >
    <image width="200px" height="200px" src="<?php echo $row["picurl"]?>"></image>
    <a title="查看商品详细信息" href="goodsshow.php?id=<?php echo $row["id"]?>"><?php echo $row["title"]?></a>
</td>
<?php
  }
      ?>
    </tr>
</table>
</div>

2.

微信图片_20180308144205.pngsection suivante

<?php echo "商品详情前端页面展示";
soumettreRéinitialiser le code
chapitredidacticiel