Blogger Information
Blog 8
fans 0
comment 1
visits 4941
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
任意表格
追梦者的博客
Original
756 people have browsed it
<?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>';
    }
}


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