freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

研究生教學管理系統(tǒng)的設計與開發(fā)畢業(yè)設計論文(編輯修改稿)

2025-07-25 05:49 本頁面
 

【文章內(nèi)容簡介】 SELECTstudentidFROMstudentwherename=39。 .$studentName.39。 $rs=mysql_query($student_sql,$conn)。 $array=mysql_fetch_array($rs)。 $studentid=$array[0]。 $student_sql=SELECTcount(*)FROMstartreportwherestudent id =39。.$studentid.39。 $rs=mysql_query($student_sql,$conn)。 $array=mysql_fetch_array($rs)。 $count=$array[0]。 if($count!=0){ $starReportUdp=updatestartreportsetteacheri d=39。.$teacherid.39。,filePath=39。.$destination.39。wherestudentid=39。 .$studentid.39。、mysql_query($starReportUdp,$conn)。 }else{ $starReportReg=INSERTINTOstartreport(studentid,teacherid,filePat h,evaluate)VALUES(39。.$studentid.39。,39。.$teacherid.39。,39。.$destination .39。,39。39。)。 mysql_query($starReportReg,$conn)。 } 提交中期審核(1) 提交中期審核界面,如下圖49所示。圖49提交中期審核(2)提交中期審核功能要點 研究生在主界面點擊提交中期審核,進入該界面。研究生從下載中心下載中期審核模版并進行編輯后將word文件添加進去,然后單擊提交開題中期報告,提交成功后,系統(tǒng)將word文件上傳到服務器,并將路徑導入到數(shù)據(jù)庫表(middlereport)中。(3)提交中期審核主要代碼 $studentid=$_SESSION[39。student39。]。 $destination。 if(is_uploaded_file($_FILES[upfile][tmp_name])){ //是否存在文件 include(39。39。)。 } $startreport_sql=SELECTcount(*)FROMstartreportwherestu dent id=39。.$studentid.39。 $rs=mysql_query($startreport_sql,$conn)。 $array=mysql_fetch_array($rs)。 $count=$array[0]。 if($count!=0){ $middlereport_sql=SELECTcount(*)FROMmiddlereportwheres tudentid=39。.$studentid.39。 $rs=mysql_query($middlereport_sql,$conn)。 $array=mysql_fetch_array($rs)。 $count=$array[0]。 if($count!=0){ $middlereportUdp=updatemiddlereportsetfilePath=39。.$destination .39。 wherestudentid=39。.$studentid.39。 mysql_query($middlereportUdp,$conn)。 }else{ $middlereportReg=INSERTINTOmiddlereport(studentid,teacherid,file Path ,evaluate)VALUES(39。.$studentid.39。,39。39。,39。.$destination.39。,39。39。)。 mysql_query($middlereportReg,$conn)。 } echoscriptalert(39。提交成功!39。)。()。/script。 }else{ echoscriptalert(39。開題報告尚未提交39。)。()。/script。 } 提交論文(1) 提交論文界面,如下圖410所示。圖410提交論文(2)提交論文功能要點 研究生在主界面點擊查看提交論文,進入該界面。研究生將Word文件添加進去,然后單擊上傳論文按鈕,提交成功后,系統(tǒng)將Word文件生成到服務器,并將路徑導入到數(shù)據(jù)庫表(thesis)中。(3)提交論文主要代碼 $title=$_POST[39。title39。]。 @session_start()。 $studentid=$_SESSION[39。student39。]。 $destination。 if(is_uploaded_file($_FILES[upfile][tmp_name])){ //是否存在文件 include(39。39。)。 } $middlereport_sql=SELECTcount(*)FROMmiddlereportwheres tudentid=39。.$studentid.39。 $rs=mysql_query($middlereport_sql,$conn)。 $array=mysql_fetch_array($rs)。 $count=$array[0]。 if($count==0){ echoscriptalert(39。中期報告尚未提交39。)。()。/script。 }else{ $thesis_sql=SELECTcount(*)FROMthesiswherestudentid= 39。.$studentid.39。 $rs=mysql_query($thesis_sql,$conn)。 $array=mysql_fetch_array($rs)。 $count=$array[0]。 if($count!=0){ $thesisUdp=updatethesissettitle=39。.$title.39。,filePath=39。.$de stination.39。wherestudentid=39。.$studentid.39。 mysql_query($thesisUdp,$conn)。 }else{ $thesisReg=INSERTINTOthesis(studentid,title,filePath,evaluate) VALUES(39。.$studentid.39。,39。.$title.39。,39。.$destination.39。,39。39。)。 mysql_query($thesisReg,$conn)。 } 申請導師(1) 申請導師界面,如下圖411所示。圖411申請導師(2)申請導師功能要點 研究生在主界面點擊申請導師,進入該界面。在下拉列表中選擇想選的導師,選擇后點擊提交按鈕,如果該研究生已經(jīng)選擇過該導師,系統(tǒng)將提顯示該生已選擇過這個導師,否則將提交成功。將在研究生與導師互選情況(apply)表中,將相對的teacherid與studentid的choised值改為false,即表示等待老師選擇研究生。如果研究生已選擇過導師并被導師選中,點擊申請導師后,將顯示“你已被導師選中,請不要鬧”。(3)申請導師主要代碼 $mentorName=$_POST[39。mentorName39。]。 $studentid=$_SESSION[39。student39。]。 $teacher_sql=SELECTusernameFROMteacherwherename=39。 .$me ntorName.39。 $rs=mysql_query($teacher_sql,$conn)。 $array=mysql_fetch_array($rs)。 $teacherid=$array[0]。 $mentor_sql=SELECTcount(*)FROMapplywhereteacherId= 39。.$ teacherid.39。andstudentid=39。.$studentid.39。 $rs=mysql_query($mentor_sql,$conn)。 $array=mysql_fetch_array($rs)。 $count=$array[0]。 if($count!=0){ echoscriptalert(39。你已申請過此老師作為你的導師! 39。)。()。/script。 }else{ $mentorReg=INSERTINTOapply(teacherId,studentId,choised)VALUES( 39。.$teacherid.39。,39。.$studentid.39。,39。false39。)。 mysql_query($mentorReg,$conn)。 echoscriptalert(39。申請成功!39。)。/script。 echoscript=39。://localhost/postgraduate/ph p/39。/script。 } 申請公選課(1) 申請公選課界面,如下圖412所示。圖412申請公選課(2)申請公選課功能要點 研究生在主界面點擊申請公選課,進入該界面。研究生在下拉列表里選擇想選的課程,系統(tǒng)將判斷研究生所選的課程是否是必修課,如果是的話數(shù)據(jù)將無法上傳到數(shù)據(jù)庫表中并返回。否則系統(tǒng)將提示“公選課只能選擇一次,請慎重選擇”。研究生點擊確定后數(shù)據(jù)將上傳到數(shù)據(jù)庫表(public)中,并且選課成功,每個學生可以選一節(jié)公選課。選課成功后再點擊申請公選課將顯示“你已申請過公選課”。(3)申請公選課主要代碼 $publicSubject=$_POST[39。publicSubject39。]。 $name=$_SESSION[39。name39。]。 $subject_sql=SELECTsubjectIdFROMsubjectwheresubjectNam e=39。.$publicSubject.39。 $rs=mysql_query($subject_sql,$conn)。 $array=mysql_fetch_array($rs)。 $subjectId=$array[0]。 $student_sql=SELECT*FROMstudentwherename=39。.$name. 39。 $rs=mysql_query($student_sql,$conn)。 $array=mysql_fetch_array($rs)。 $studentinfo=$array。 $plan_sql=SELECTscheduleListFROMplanwhereclassName=39。. $studentinfo[39。class39。].39。 $rs=mysql_query($plan_sql,$conn)。 $array=mysql_fetch_array($rs)。 $scheduleList=$array[0]。 $scheduleList=explode(。,$scheduleList)。 if(in_array($subjectId,$scheduleList)){ echoscriptalert(39。此課程為你的必修課,請重新輸入! 39。)。()。/script。 }else{ $publicReg=INSERTINTOpublic(subjectId,subjectName,studentid,perf ormance)VALUES(39。.$subjectId.39。,39。.$publicSubject.39。,39。.$studentinf o[39。studentid39。].39。,39。39。)。 mysql_query($publicReg,$conn)。 echoscriptalert(39。添加成功!39。)。/script。 echoscript=39。://localhost/postgraduate/ph p/39。/script。
點擊復制文檔內(nèi)容
環(huán)評公示相關推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1