2 <link rel="stylesheet" type="text/css" href="/style.css">
8 /* Propel 1.3 syntax. */
9 #$area = AreaPeer::retrieveByPK(1);
12 $area = $q->findPK(1);
14 $city = $qq->findPK($area->getCityId());
16 printf("%s in %s\n", $area->getName(), $city->getName());
19 function button($text, $link) {
20 $safe = htmlspecialchars($text);
21 echo "<span class=\"button\"><a href=\"$link\">$safe</a></span>\n";
25 button("Orders", "/order");
26 button("Donations", "/donation");
30 button("Contacts", "/contact");
31 button("Hubs", "/hub");
32 button("Areas", "/area");
36 button("Cities", "/city");