當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Student::deleteStudent方法代碼示例

本文整理匯總了PHP中Student::deleteStudent方法的典型用法代碼示例。如果您正苦於以下問題:PHP Student::deleteStudent方法的具體用法?PHP Student::deleteStudent怎麽用?PHP Student::deleteStudent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Student的用法示例。


在下文中一共展示了Student::deleteStudent方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: actionAdd

 public function actionAdd()
 {
     if (isset($_POST['save'])) {
         Student::saveStudent($_POST['name'], $_POST['age'], $_POST['bolum']);
         return true;
     }
     if (isset($_POST['update'])) {
         Student::updateStudent($_POST['name'], $_POST['age'], $_POST['bolum'], $_POST['d_id']);
         return true;
     }
     if (isset($_POST['delete'])) {
         Student::deleteStudent($_POST['d_id']);
         return true;
     }
     //$f_name = array();
     $b_name = array();
     // $studentAdd= News::getNewsItem($id);
     //$f_name = Student ::getFacultet();
     $b_name = Student::getBolum();
     require_once ROOT . '/views/student/add_student.php';
     return true;
 }
開發者ID:nurik1kg,項目名稱:mvc_php,代碼行數:22,代碼來源:StudentController.php

示例2: actionDelete

 public function actionDelete($id)
 {
     Student::deleteStudent($id);
     //переадресация на страницу поиска
     header("location:/st/student/search");
 }
開發者ID:RybalkoA,項目名稱:st,代碼行數:6,代碼來源:StudentController.php

示例3: array

     $this->branch = $_POST['branch'];
     $this->track = $_POST['track'];
     $this->status = $_POST['status'];
     $response = $studObj->updateStudent();
     if ($response == 'True') {
         $studArr = array('result' => 'true');
     } else {
         $studArr = array('result' => 'false');
     }
     echo json_encode($studArr);
     break;
     /*insert new student*/
 /*insert new student*/
 case 'delete_student':
     $id = $_GET['id'];
     $response = $studObj->deleteStudent();
     if ($response == 'True') {
         $studArr = array('result' => 'true');
     } else {
         $studArr = array('result' => 'false');
     }
     echo json_encode($studArr);
     break;
 case 'mail_exist':
     $mail = $_GET['mail'];
     $response = $studObj->isExsistMail($mail);
     if ($response == 'True') {
         $studArr = array('result' => 'false');
     } else {
         $studArr = array('result' => 'true');
     }
開發者ID:Fatma-Sarhan,項目名稱:Socialmedia,代碼行數:31,代碼來源:student-server.php

示例4: array

     Student::setDataOperationBusiness($registry[$nameDataBase]);
     $idTransaction = $transaction->insertTransaction(array(Student::$business, Student::$update, Student::$descriptionBusiness));
     $data = array($_POST['student_code'], $_POST['STUDENT_STATUS'], $_POST['pk_id_person'], $_POST['data_1'], $_POST['data_2'], $_POST['data_3'], $_POST['data_4'], $_POST['data_5'], $_POST['EDIT']);
     $statusTransactionDB = $catalog->updateStudent($data, $idTransaction);
     if ($statusTransactionDB > 0) {
         Forms::setMessage('SUCCESS', $v_label["SHORT_MESSAGE_OK_EDIT"], $v_label["DETAIL_MESSAGE_OK_EDIT"]);
     } else {
         Forms::setMessage('ERROR', $v_label["SHORT_MESSAGE_NOOK_EDIT"], $v_label["DETAIL_MESSAGE_NOOK_EDIT"]);
     }
     break;
 case 'DELETE':
     $transaction = new Transaction($registry[$nameDataBase]);
     Student::setDataOperationBusiness($registry[$nameDataBase]);
     $idTransaction = $transaction->insertTransaction(array(Student::$business, Student::$update, Student::$descriptionBusiness));
     $data = array($_GET['DELETE']);
     $statusTransactionDB = $catalog->deleteStudent($data, $idTransaction);
     if ($statusTransactionDB > 0) {
         Forms::setMessage('SUCCESS', $v_label["SHORT_MESSAGE_OK_DELETE"], $v_label["DETAIL_MESSAGE_OK_DELETE"]);
     } else {
         Forms::setMessage('ERROR', $v_label["SHORT_MESSAGE_NOOK_DELETE"], $v_label["DETAIL_MESSAGE_NOOK_DELETE"]);
     }
     break;
 case 'ASSIGN_FAMILY':
     $pk_id_student = $_POST['ASSIGN_FAMILY'];
     $pk_id_holder = null;
     $pk_resultado = 0;
     $transaction = new Transaction($registry[$nameDataBase]);
     Holder::setDataOperationBusiness($registry[$nameDataBase]);
     $idTransaction = $transaction->insertTransaction(array(Holder::$business, Holder::$update, Holder::$descriptionBusiness));
     //datos de la fecha de asignacion
     $query2 = null;
開發者ID:vicholuis,項目名稱:proyectopruebalms,代碼行數:31,代碼來源:student_admin.php


注:本文中的Student::deleteStudent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。