<?php
$pharmacy = $_POST['select-pharmacy']; 

if($pharmacy == 'Red River Co-op St. Vital'){
   header("Location: https://redrivercooppharmacystvital.myappts.ca/src");
exit();
}
if($pharmacy == 'Red River Co-op St. Norbert'){
       header("Location: https://redrivercooppharmacystnorbert.myappts.ca/src");
exit();
}
if($pharmacy == 'Red River Co-op Main Street'){
       header("Location: https://redrivercooppharmacymainstreet.myappts.ca/src");
exit();
}
if($pharmacy == 'Red River Co-op Seasons'){
       header("Location: https://redrivercooppharmacyseasons.myappts.ca/src");
exit();
}
if($pharmacy == 'Red River Co-op Southdale'){
       header("Location: https://redrivercooppharmacysouthdale.myappts.ca/src");
exit();
}
if($pharmacy == 'Red River Co-op Niverville'){
       header("Location: https://redrivercooppharmacyniverville.myappts.ca/src");
exit();
}
if($pharmacy == 'Red River Co-op Grant Park'){
       header("Location: https://redrivercooppharmacygrantpark.myappts.ca/src");
exit();
}


?>