本文整理匯總了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>";
}
}
示例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";
}