Zhengyun teaching evaluation system v4.0 questionnaire platform supports batch import


1. Detailed introduction

Zhengyun teaching evaluation system is an online questionnaire platform based on web pages, which is mainly used for students in primary and secondary schools and colleges and universities to evaluate the teaching ability of teachers. It enables the school to grasp the latest status of teachers' teaching services and understand the acceptance of students to different teaching methods, so as to adjust the teaching methods and directions in a timely manner and improve the school's regular teaching management level.

2. Effect display

1. Part of the code

The code is as follows (example):

//转到手机登录页
if(is_mobile_request()==true)
{
    
    
	Header("Location:Mobile/Index.php"); 
	exit();
}

//-----------------------------------------------获取网页标题
$_mysqli = new mysqli($strSQLServer.":".$nSQLPort, $strSQLUserName, $strSQLPassword, $strSQLDatabase);
if(mysqli_connect_errno())
{
    
    
	echo "Connect to MySQL error: ".mysqli_connect_error();
	exit();
}
$_mysqli->set_charset('utf8');

$strSchool = "";
$_result = $_mysqli->query("SELECT StringValue FROM ParamList WHERE KeyName='School'");
if($_row = $_result->fetch_row())
{
    
    
	$strSchool = $_row[0];
}
$_result->free();

$strTitle = "";
$strSQL = "SELECT StringValue FROM ParamList WHERE KeyName='Title'";
$_result = $_mysqli->query($strSQL);
if($_row = $_result->fetch_row())
{
    
    
	$strTitle = htmlentities(trim($_row[0]));
}
$_result->free();
$_mysqli->close();

if($strTitle == "")
	$strTitle = $strSoftwareName;
?>

2. Rendering display

Please add a picture description


3. Download learning materials

Lanzoul: https://qumaw.lanzoul.com/im5FG0j26u7a

Guess you like

Origin blog.csdn.net/m0_57941469/article/details/128383182