search
HomeBackend DevelopmentPHP TutorialStudent performance management system

Basic functions: 1. Realize the maintenance of students’ basic information (add, delete and modify); 2. Realize the maintenance of course information (add, delete and modify); 3. Realize the management of course selection (course selection, withdrawal); 4. Realize the performance management (entry), Statistics on student and course average grades
  1. $conn=mysql_connect("localhost","root","123456") or die('Connection failed'); //Connect to the server
  2. mysql_select_db("YGGL",$conn) or die('Failed to connect to database'); //Select database
  3. mysql_query("SET NAMES 'gb2312'"); //Set character set
  4. $Number=@$_GET['Number']; //Get number
  5. $Name =@$_GET['Name']; //Get the name
  6. $Depart=@$_GET['Depart']; //Get the department name
  7. //The getsql function that generates the query statement
  8. function getsql($Num,$Na ,$Dep)
  9. {
  10. $sql="select * from Employees where ";
  11. $note=0;
  12. if($Num)
  13. {
  14. //If the number is filled in, set the query conditions after the where clause
  15. $ sql.="EmployeeID like '%$Num%'";
  16. $note=1;
  17. }
  18. if($Na)
  19. {
  20. //If the name is filled in, connect the query conditions after $sql
  21. if($note ==1)
  22. $sql.=" and Name like '%$Na%'";
  23. else
  24. $sql.="Name like '%$Na%'";
  25. $note=1;
  26. }
  27. if( $Dep&&($Dep!="All Departments"))
  28. {
  29. if($note==1)
  30. $sql.=" and DepartmentID=(select DepartmentID from Departments
  31. where DepartmentName='$Dep')";
  32. else
  33. {
  34. $sql.="DepartmentID=(select DepartmentID from Departments
  35. where DepartmentName='$Dep')";
  36. $note=1;
  37. }
  38. }
  39. if($note==0)
  40. {
  41. / /If no conditions are set, query all records
  42. $sql="select * from Employees";
  43. }
  44. return $sql; //Return SQL statement
  45. }
  46. $sql=getsql($Number,$Name,$Depart ); //Get the query statement
  47. $result=mysql_query($sql);
  48. $total=mysql_num_rows($result);
  49. $page=isset($_GET['page'])?$_GET['page']: 1; //Get the value of page in the address bar, if it does not exist, set it to 1
  50. $num=5; //Display 5 records per page
  51. $url='8_1.php'; //URL of this page
  52. // Page number calculation
  53. $pagenum=ceil($total/$num); //Get the total page number, which is also the last page
  54. $page=min($pagenum,$page); //Get the home page
  55. $prepg=$page- 1; //Previous page
  56. $nextpg=($page==$pagenum? 0: $page+1); //Next page
  57. $new_sql=$sql." limit ".($page-1)* $num.",".$num; //Query statement to find $num records
  58. $new_result=mysql_query($new_sql);
  59. if($new_row=mysql_fetch_array($new_result))
  60. {
  61. //If there is a query As a result, employee information will be output in table form
  62. echo "
  63. Employee information query results
  64. > ;";
  65. echo "";
  66. echo "
  67. > ;";
  68. echo "
  69. ";
  70. echo "
  71. ";
  72. echo "
  73. ";
  74. echo "
  75. ";
  76. echo "
  77. ";
  78. do
  79. {
  80. list($number,$name,$edu ,$birthday,$sex,$workyear,$phone,$add,$depid)=$new_row;
  81. //SQL statement to find department name
  82. $d_sql="select DepartmentName from Departments where DepartmentID=$depid"; $d_result =mysql_query($d_sql);
  83. $d_row=mysql_fetch_row($d_result);
  84. echo "
  85. "; //Output number
  86. echo "
  87. "; //Output academic qualifications
  88. if($sex=='1')
  89. echo "
  90. ";
  91. $timeTemp=strtotime($birthday); //Parse the date and time into a UNIX timestamp
  92. $date=date("Y-n-j" ,$timeTemp); //Use the date function to convert the time into "year-month-day" format
  93. echo "
  94. "; //Output the date of birth
  95. echo "
  96. "; //Output the name of the department
  97. echo "
  98. ";
  99. }while($new_row=mysql_fetch_array($new_result));
  100. echo "
  101. numberName Education Gender Date of Birth Department
    $number$name"; //Output name
  102. echo "
  103. $edu Male td>";
  104. else
  105. echo "
  106. Female $date $ d_row[0]
    ";
  107. //Start paging navigation bar code
  108. $pagenav="";
  109. if($prepg)
  110. $pagenav.="< ;a href='$url?page=$prepg&Number=$Number&Name=$Name&Depart=$Depart'>
  111. Previous page ";
  112. for($i=1;$i {
  113. if($page==$i) $pagenav.=$i." ";
  114. else
  115. $pagenav.="
  116. $i
  117. ";
  118. }
  119. if($nextpg)
  120. $pagenav.="
  121. Next page
  122. ";
  123. $pagenav.="Total (".$pagenum.") pages";
  124. //Output paging navigation
  125. echo "
    ".$pagenav."
";
  • }
  • else
  • echo "<script>alert('No record!'); location.href='8_1.php';</script>";
  • ?>
  • Copy code
    1. Employee information query
  • > ;
  • Number:< ;/td>
  • Department:
  • @include "SY8_1_search.php"; //Contains the SY8_1_search.php page
  • ?>
  • < ;/html>
  • Copy code
    1. 员工收入页面
    2. 员工收入情况
    3. 编号:
    4. @include "SY8_2_pro.php"; //包含SY8_2_pro.php页面
    5. ?>
    复制代码
    1. $Number=$_POST['Number'];
    2. $conn=mysql_connect('localhost', 'root', '') or die("连接失败");
    3. mysql_select_db("YGGL",$conn); //打开数据库
    4. $s_sql="select * from Salary where EmployeeID='$Number'";
    5. $s_result=mysql_query($s_sql,$conn);
    6. $s_row=mysql_fetch_array($s_result);
    7. $id=@$s_row['EmployeeID'];
    8. $in=@$s_row['InCome'];
    9. $out=@$s_row['OutCome'];
    10. @$realcom=$in-$out;
    11. ?>
    12. 编号:
      收入:
      支出:
      实际收入:
    13. if(isset($_POST['update']))
    14. {
    15. $EmployeeID=$_POST['number'];
    16. $income=$_POST['income'];
    17. $outcome=$_POST['outcome'];
    18. if(is_numeric($income)&&is_numeric($outcome)) //判断输入的是否是数字字符串
    19. {
    20. if($EmployeeID)
    21. {
    22. //修改表salary的SQL语句
    23. $u_sql="update salary set InCome=$income,OutCome=$outcome
    24. where EmployeeID='$EmployeeID'";
    25. $u_result=mysql_query($u_sql);
    26. if(mysql_rows_affected($conn)!=0)
    27. echo "<script>alert('修改成功!');window.location='SY8_2.php';</script>";
    28. }
    29. else
    30. echo "<script>alert('未获得编号!');window.location='SY8_2.php';</script>";
    31. }
    32. else
    33. echo "<script>alert('输入不正确!');window.location='SY8_2.php';</script>";
    34. }
    35. ?>
    复制代码


    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

    Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

    cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

    The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

    Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

    Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

    12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

    Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

    PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

    PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

    Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

    Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

    Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

    The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

    How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

    Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Tools

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    PhpStorm Mac version

    PhpStorm Mac version

    The latest (2018.2.1) professional PHP integrated development tool

    DVWA

    DVWA

    Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment