猿问

php 动态怎么添加一个表格

php 动态怎么添加一个表格


小唯快跑啊
浏览 1042回答 1
1回答

犯罪嫌疑人X

PHP动态的生成表格实际上是处理html中的tr标签(行)td标签(列)。所以在行和列已知的情况下行和列分别用rows和clos,用两个for语句就能方便的写出tr和td标签,td代码的for语句镶嵌在tr代码的for语句之内:<?phpheader("Content-type:text/html;charset=GB2312");?><table border="1" width="600"><?phpfor($i=0;$i<$_GET['rows'];$i++):echo"<tr>";for($n=0;$n<$_GET['cols'];$n++):echo"<td> </td>";endfor;echo"</tr>";endfor;?></table><h1>表格的绘制</h1><form><input type="text" name="rows"/></br><input type="text" name="cols"/></br><input type="submit" name="submit"/></form>
随时随地看视频慕课网APP
我要回答