You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$alias = $connection->prepare("SELECT alias.name AS name, code.url AS url, code.description AS description FROM alias JOIN code ON (alias.code = code.name) WHERE alias.institution = :institution");
$alias->bindValue(":institution", $institution);
$alias->execute();
while ($row = $alias->fetch(PDO::FETCH_LAZY, PDO::FETCH_ORI_NEXT)) {