Amy and Kim have set up a discussion board that will allow you to interact with them and your fellow quilters. Introduce yourself, ask questions and share your experiences.
//Tabs
$varTab = $_GET["tab"];
if (strlen($varTab) == 0) {
$varTab = "tab-1";
}
echo "
\n";
echo "
\n";
$arrTab = array(
//array("Meet and Greet","tab-1"),
//array("Q & A","tab-2"),
//array("Class Discussions","tab-3"),
//array("Shore Excursions","tab-4")
);
for ($i = 1; $i <= count($arrTab); $i += 1) {
echo "- " . $arrTab[$i-1][0] . "
\n";
}
echo "
\n";
echo "
\n";
include("tab-change.php");
echo "
\n";
echo "
\n";
?>