MVC Development

Bad architectures for web design (part one)

<html>
<head>
<? include('../lib/accounts'); ?>
</head>
<body>
Your account balance is:
<? $account_balance = get_account_balance(getenv('REMOTE_USER'));
   print $account_balance;
?>
</body>
</html>