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


PHP Patient::selectAll方法代碼示例

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


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

示例1: profil

function profil($id)
{
    //On vérifie que le paramètre est bien un ID
    if ($id != null && $id == intval($id) && Consultation::exists($id)) {
        //Gestion du POST
        if (isset($_POST['posted'])) {
        }
        //Inclusion de la page
        $rdv = Consultation::select($id);
        $tabMedecin = Medecin::selectAll();
        $tabPatient = Patient::selectAll();
        $pConsult = Patient::select($rdv['id_patient']);
        $mConsult = Medecin::selectByID($rdv['id_medecin']);
        include VIEW . 'modifierConsultation.php';
    } else {
        unset($_POST);
        //Supprimer le post pour éviter les conflits avec l'autre page
        afficher();
        echo "<p id='mErreur'>Aucune consultation correspondante<p>";
    }
}
開發者ID:fauvet,項目名稱:GESCABMED,代碼行數:21,代碼來源:consultation.php

示例2: lister

function lister()
{
    //Si il y a eu suppression, on récupère le post
    if (isset($_POST) && $_POST !== array()) {
        foreach ($_POST as $PpID => $value) {
            $pID = substr($PpID, 1);
            if (Patient::delete($pID)) {
                echo "<p id='messageOK'>Supprimé<p><br>";
            } else {
                echo "<p id='mErreur'>Erreur interne<p>";
                break;
            }
        }
    }
    //Récupération des données
    $patients = Patient::selectAll();
    //On récupère le médecin traitant pour chaque patient
    for ($i = 0; isset($patients[$i]); $i++) {
        if ($patients[$i] != null) {
            $patients[$i]['medecin'] = array();
            $patients[$i]['medecin'] = Medecin::selectByID($patients[$i]['id_med']);
        }
    }
    //Inclusion de la vue (tableau qui contient tout)
    include VIEW . "listerPatient.php";
}
開發者ID:fauvet,項目名稱:GESCABMED,代碼行數:26,代碼來源:patient.php


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