<?php

    // One connection file so that we don't have to have this same code
    // at the top of every page.

    $db = new PDO(
        "mysql:host=navytank.no-ip.org;port=33706;dbname=hw12",
        "sample_user",
        "sample_password"
    );

    include("Smarty-3.1.8/libs/Smarty.class.php");
    $smarty = new Smarty;

?>
