<?php
require("/home/httpd/lib/defaults.inc");

#Database
$MysqlName='web';
$MysqlPW='12345';
$MysqlDB='web';

$DbH=mysql_connect("localhost",$MysqlName,$MysqlPW)
    or die(
"Failed: ".mysql_error());
mysql_select_db($MysqlDB)
    or die(
"select_db($MysqlDB) Failed: ".mysql_error());

$Debug=0;
$SiteName="Lunch Bunch";
$Buttons=array("<HR>" => "index.phtml")+$Buttons;
$Buttons=array("Lunch Bunch" => "$DocRoot/lunchbunch/index.phtml")+$Buttons;

$Places=array(
    
'bagelsplus' => array(
        
'name' => 'Bagel Plus',
        
'addr' => 'Park Street'
        
),
    
"buzzys" => array(
        
'name' => 'Buzzys Roast Beef'
        
'addr' => 'Cambridge'
        
), 
    
'cbc' => array(
        
'name' => 'Cambridge Bewing Company'
        
addr => 'One Kendall Square'
        
),
    )


?>