<?php
$yearsofservice=10;
$balance=115000.00;
$message = "Welcome to Bank of Coalinga.";
$vip=true;
print("<h1>".$message."</h1>");
print("Your balance is ".$balance);
print("<br><br>");
print("VIP Status: ".$vip);
print("<br><br>");
print($yearsofservice." year customer.");
?>