Blogger Information
Blog 50
fans 0
comment 0
visits 31558
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
流程控制替换语法
手机用户1580651468
Original
533 people have browsed it

使用流程控制替换语法,将演示网站的首页和产品页进行动态替换

一、实现的代码段

  1. <!-- 主体 -->
  2. <main>
  3. <!-- 新闻列表 -->
  4. <div class="news">
  5. <h3>新闻列表</h3>
  6. <div class="list">
  7. <?php foreach ($news as $key=>$new):?>
  8. <a href=""><?php echo $new['title']?> </a>
  9. <?php endforeach ?>
  10. </div>
  11. </div>
  12. <!-- 产品列表 -->
  13. <div class="items">
  14. <h3>产品列表</h3>
  15. <div class="list">
  16. <?php foreach ($products as $product):?>
  17. <div class="item">
  18. <img src="<?php echo $product['img']?>" alt="" />
  19. <a href=""><?php echo $product['title']?></a>
  20. </div>
  21. <?php endforeach ?>
  22. </div>
  23. </div>
  24. </main>

二、实现的效果图


Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:完成的不错, 继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments