首页 > 开发 > PHP > 正文

PHP输出九九乘法表代码实例

2024-05-04 23:33:29
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP输出九九乘法表代码实例,本文直接给出实现代码,需要的朋友可以参考下

 

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>九九乘法表</title> 
  6. <link href="mult9_9.css" rel="stylesheet" type="text/css" /> 
  7. </head> 
  8.  
  9.  
  10. <body> 
  11. <table border="1" cellpadding="0" cellspacing="0" class="tableStyle"
  12. <caption> 
  13. <h1>九九乘法表</h1> 
  14. </caption> 
  15. <?php 
  16. for ($i=1; $i<=9; $i++) 
  17. echo("<tr>"); 
  18. for ($j=1; $j<=$i; $j++) 
  19. echo("<td align=/"center/" width=/"100/" height=/"40/""); 
  20. if ($i == $j) 
  21. echo(" style=/"color: #FF0/""); 
  22. echo(">"); 
  23. $s = $i * $j; 
  24. echo "$i * $j = $s"
  25. echo("</td>"); 
  26. echo("</tr>"); 
  27. ?> 
  28. </table> 
  29. </body> 
  30. </html> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表