Exhibitions


All information is subject to change.

curDate() order by FromDate”; $result = mysqli_query($conn, $sql); if (mysqli_num_rows($result) > 0) { // output data of each row while($row = mysqli_fetch_assoc($result)) { echo “

” . $row[“EventName”] . ““; IF ($row[“Endorsed”] == “1”) echo ”    Endorsed “; echo ”
” . $row[“FromDate”]. ” – ” . $row[“EndDate”]. ”
“; echo $row[“Place”] . ”
” . $row[“Memo”] . ”
” . “” . $row[“WebSite”] . “


“; } } else { echo “0 results”; } mysqli_close($conn); ?>