18 lines
607 B
PHP
18 lines
607 B
PHP
<?php
|
|
$this->titre = "Intersanté - Santé - Consultations";
|
|
$pharmacieInterne = $_SESSION['pharmacieInterne_C'];
|
|
$optiqueInterne = $_SESSION['optiqueInterne_C'];
|
|
?>
|
|
<h2> AUTRES PRESTATIONS / OTHER SERVICES </h2>
|
|
|
|
<div class="row">
|
|
<ul>
|
|
<?php if($pharmacieInterne=="1") : ?>
|
|
<h1><li><a href="javascript:actualiser_pharmacien();"> Pharmacie Interne / Internal Pharmacy </a></li></h1>
|
|
<?php endif; ?>
|
|
|
|
<?php if($optiqueInterne=="1") : ?>
|
|
<h1><li><a href="javascript:actualiser_opticien();"> Lunetterie Interne / Internal Eyewear </a></li></h1>
|
|
<?php endif; ?>
|
|
</ul>
|
|
</div>
|