Tournament Information

| 0

0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {

$f1=$row[“Name”];
$f2=$row[“Address”];
$f3=$row[“City”];
$f4=$row[“State”];
$f5=$pageName;
}
} else {}

?>

Tournaments at this facility:

“;
echo “

    “;

    $sql=”SELECT event_title, event_begin, event_end, event_link FROM `wp_my_calendar` WHERE `event_location` = ‘$f5’ ORDER BY event_begin”;
    $result = mysqli_query($conn, $sql);
    if (mysqli_num_rows($result) > 0) {
    // output data of each row
    while($row = mysqli_fetch_assoc($result)) {
    echo “” . $row[“event_title”]. ““, ““;
    ?>

    Event Starts – “, $f8, “
    “;

    echo ” Event link: ” . $row[“event_link”]. “


    “;

    }
    } else {echo “

    There are no adult bowling tournaments listed for this facility at this time.
    Please use the Submissions page to submit your event.

    “;
    }
    ?>