Blogger Information
Blog 11
fans 2
comment 0
visits 9282
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
99乘法表
Dr-Wu
Original
851 people have browsed it

服务器测试地址:http://116.196.116.164/23/99.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        * {
            /*background-image: url("bg.jpg");*/

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

        }
        td{
           background-color: #8fbc8f;
            color:darkviolet;
            border: 1px;
            border-radius: 5px;
        }
    </style>
</head>
<body>

</body>
</html>
<?php
header('Content-type:text/html;charset=utf-8');

echo '<table>';//生成一个表格
for ($i=1;$i<=9;$i++){
 echo '<tr>';
 for ($j=1;$j<=$i;$j++){
 echo '<td>';
 echo "$i*$j=".$i*$j."";
 echo '</td>';
        }
 echo '</tr>';
    }echo '</table>';


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