Blogger Information
Blog 61
fans 0
comment 0
visits 62943
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP乘法表
Pengsir
Original
1013 people have browsed it

样式代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>

        table{
            margin: 100px auto;
            border-style: none;

        }
        td{
            color:black;
            border: 1px;
            border-radius: 5px;
        }
    </style>
</head>
<body>
</body>
</html>

php代码

<?php
/*
 * 99乘法表
 */
header('content-type:text/html;charset=utf-8');
echo "<table width='600' border='1' cellspacing='0' cellpadding='3'>";
for($j=1;$j<=9;$j++){
echo "<tr>";
for($i=1;$i<=$j;$i++){
echo "<td>{$i}*{$j}=".($i*$j)."</td>";
}
echo "</tr>";
}
echo "</table>";

99乘法表.png

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
Author's latest blog post