本文整理汇总了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";
}