Blogger Information
Blog 13
fans 0
comment 0
visits 5504
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格生成器PHP代码部分
安之若素
Original
912 people have browsed it

实例

<?php
 //前端代码提交 获取表单提交方式 
 //1 判断表单提交是否是以GET 提交 
  	if (!empty($_GET['rows']) && !empty($_GET['cols'])) {
		//用较短的变量名称进行转存
		$rows = $_GET['rows'];
		$cols = $_GET['cols'];
	   //获取数据后 创建表格基本构架,采用字符串拼接方式
	   $table.='<table border="1" cellspacing="0 cellpadding="3" align="center" width="400">';
	   //行和列用双重循环来生成表格
	   //生成表头
	   $table.='<tr align="center" bgcolor="red">';
	     for ($i=0;$i<$cols;$i++){
			 $table.='<th>X</th>';
			 }
	   $table.='</tr>';
	   //表格内容生成区
	   for($r=0;$r<$rows;$r++){
		   $table.='<tr>';
		   for($c=0;$c<$cols;$c++)
		   {
			   $data = $r*$cols+$c;
				// ++$data: 可以确保从1开始计数,以确保符合人类正常思维
				$table .= '<td align="center">'.++$data.'</td>';
			   }
		   $table.='</tr>';
	   }
	  }
  }
  else {
	  exit('<spen style ="corol:red">请求类型错误</spen>');
	  }

?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

总结:

 前端代码部分比较欠缺 代码编写能力比较差 在敲代码过程一直出错 ,后续会不断加强自己多敲多理解

Correction status:qualified

Teacher's comments:
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