my $path = "./"; my $title = "Home"; !> #include ./header.iphtml my @cookie_set = $main::cgi->cookie("HmPgNotice"); !> #include ./header_include.iphtml $cursor = $main::dbh->prepare(qq{ SELECT menuID FROM mmg_navMenu WHERE label='Home' AND meetingID=? LIMIT 1 }); $cursor->execute($meeting_no); undef(@ary); @ary = $cursor->fetchrow(); $cursor->finish(); $cursor = $main::dbh->prepare(qq{ SELECT content FROM mmg_pages WHERE pageID=? LIMIT 1 }); $cursor->execute($ary[0]); undef(@ary); @ary = $cursor->fetchrow(); $cursor->finish(); print "$ary[0]"; !>
#include ./footer_include.iphtml