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


PHP Students::set_course方法代碼示例

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


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

示例1: get_by_id

 public function get_by_id($id)
 {
     //connect
     $this->db->connect();
     //query
     $sql = "SELECT * FROM students WHERE id=?";
     //prepare
     $stmt = $this->db->initialize($sql);
     //bind
     $stmt->bind_param("i", $id);
     //execute
     $stmt->execute();
     //bind result
     $stmt->bind_result($id, $first_name, $last_name, $email, $contact_no, $course);
     while ($row = $stmt->fetch()) {
         $student = new Students();
         $student->set_id($id);
         $student->set_first_name($first_name);
         $student->set_last_name($last_name);
         $student->set_email($email);
         $student->set_contact_no($contact_no);
         $student->set_course($course);
     }
     $this->db->close();
     return $student;
 }
開發者ID:pratishshr,項目名稱:leapfrog,代碼行數:26,代碼來源:studentrepository.class.php

示例2: map_data

 private function map_data()
 {
     $student = new Students();
     $student->set_first_name($_POST['first_name']);
     $student->set_last_name($_POST['last_name']);
     $student->set_email($_POST['email']);
     $student->set_contact_no($_POST['contact_no']);
     $student->set_course($_POST['course_id']);
     return $student;
 }
開發者ID:pratishshr,項目名稱:leapfrog,代碼行數:10,代碼來源:studentcontroller.php

示例3: _map_posted_data

 private function _map_posted_data()
 {
     $students = new Students();
     $students->set_first_name($_POST['first_name']);
     $students->set_last_name($_POST['last_name']);
     $students->set_email($_POST['email']);
     $students->set_contact_no($_POST['contact_no']);
     $students->set_course($_POST['course']);
     return $students;
 }
開發者ID:pratishshr,項目名稱:leapfrog,代碼行數:10,代碼來源:studentenquirycontroller.php

示例4: get_all

 public function get_all()
 {
     $student_list = array();
     //database connect
     $this->db->connect();
     //query
     $sql = "SELECT * FROM students";
     //execute and fetch data
     $result = $this->db->fetch_query($sql);
     while ($row = $result->fetch_assoc()) {
         //put in object
         $student = new Students();
         $student->set_id($row['id']);
         $student->set_first_name($row['first_name']);
         $student->set_last_name($row['last_name']);
         $student->set_email($row['email']);
         $student->set_contact_no($row['contact_no']);
         $student->set_course($row['course']);
         array_push($student_list, $student);
     }
     return $student_list;
     $this->db->close;
 }
開發者ID:pratishshr,項目名稱:leapfrog,代碼行數:23,代碼來源:studentrepository.class.php

示例5: Students

<?php

include_once "config.php";
include_once ROOT_PATH . "students/header.php";
require_once ROOT_PATH . "system/models/students.class.php";
require_once ROOT_PATH . "system/dbutil/dbconnection.class.php";
require_once ROOT_PATH . "system/repository/studentrepository.class.php";
$students = new Students();
$students->set_first_name($_POST['first_name']);
$students->set_last_name($_POST['last_name']);
$students->set_email($_POST['email']);
$students->set_contact_no($_POST['first_name']);
$students->set_course($_POST['course']);
$studentrepository = new StudentRepository();
$success = false;
if (isset($_POST['id']) && $_POST['id'] == '') {
    $result = $studentrepository->insert($students);
} else {
    $result = $studentrepository->update($students);
}
if ($result > 0) {
    header("location:index.php?success=true");
} else {
    header("location:index.php?error=true");
}
exit;
開發者ID:pratishshr,項目名稱:leapfrog,代碼行數:26,代碼來源:save.php


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