博客列表 >任意表格

任意表格

追梦者的博客
追梦者的博客原创
2017年12月27日 19:06:49755浏览
<?php

echo <<< 'INPUT'
<form>
请输入行:<input type="text" name="row">列:<input type="text" name="col"><button>提交</button>
</form>
INPUT;

$row = $_GET['row'];
$col = $_GET['col'];

echo '<table border="1" cellspacing="0" cellpadding="2" width="350px" align="center">';
for ($i=0; $i<$row; $i++) {
    echo '<tr>';
    for ($j=0; $j<$col; $j++) {
        echo '<td align="center" width="20px">'.($i*$col+$j).'</td>';
    }
}


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