MVC Development
Bad architectures for web design (part one)
- "Code in Page"
- Culprits: PHP, ASP
<html>
<head>
<? include('../lib/accounts'); ?>
</head>
<body>
Your account balance is: <? $account_balance = get_account_balance(getenv('REMOTE_USER')); print $account_balance; ?> </body> </html>