博客列表 >表格生成

表格生成

Dr-Wu
Dr-Wu原创
2017年12月27日 11:50:44871浏览

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


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        p {
            color: coral;
            text-align: center;
            font-size:1.4em
 }
        p input {
            border-radius: 5px;
            opacity: 0.3;
            border:2px solid #c8cccf;
            font-size:1.4em

 /*border-style: none;*/
 }
        table{
            margin: 100px auto;
            border-radius: 5px;
            opacity: 0.3;
            border:2px solid #c19e66;
            font-size:1.4em
 }
        button {
            margin: 20px auto;
            display: block;
            width: 10%;
            height: 40px;
            background-color: #00a4a0;
            border-radius: 5px;
            font-size: 16px;
            color: #fff;
            text-align: center;
            line-height: 40px;

        }
    </style>
</head>
<body>

</body>
</html>
<?php
header('Content-type:text/html;charset=utf-8');
echo <<<'INPUT'
<form>
<p>请输入表格的行: <input type="text" name="row" value="">列: <input type="text" name="col" value=""><button>提交</button></p>

</form>
INPUT;
echo '<hr>';

isset($_GET['row'])?$row = $_GET['row']:$row = '';
isset($_GET['col'])?$col = $_GET['col']:$col = '';

//$row = $_GET['row'];
//$col = $_GET['col'];
echo '<table border="2" cellpadding="3" cellspacing="0" width="300"> ';
for ($i=0;$i<$row;$i++){
 echo '<tr>';
 for ($j=0;$j<$col;$j++){
 echo '<td>Hello World</td>';
    }
 echo '</tr>';
}
echo '</table>';


上一条:99乘法表下一条:PHP表单验证
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议