$inc_path = "../_includes/"; $img_path = "../_images/"; include($inc_path . 'db.php'); if ($_GET['id']) { $sql = "SELECT GroupName FROM ServiceGroups WHERE GroupID = " . $_GET['id']; $query = mysql_query($sql); if (mysql_num_rows($query) > 0) { $group_name = mysql_result($query, 0); } } $title = $group_name . " Service Offerings"; include($inc_path . 'header.php'); ?>
if ($_GET['id']) { $sql = "SELECT * FROM ServiceOfferings WHERE GroupID = " . $_GET['id']; $query = mysql_query($sql); if (mysql_num_rows($query) > 0) { while ($row = mysql_fetch_array($query)) { ?> } } else { ?>Sorry, but there are currently no service offerings available for this service group. Please contact us and we would be happy to work with you to build a custom solution for your business.
} } ?> mysql_close($dbconn); include($inc_path . 'footer.php'); ?>