Searching of the FHSNL Vital Statistics Births Database can only be performed by FHSNL members who are logged in to our website.
If you are not a FHSNL member, then you can find details on how to join the society by clicking here.
If you are a member, then you should login in order to search this database. If you have not yet registered on our website, then you will first need to register and obtain a password to login.
array ('class' => True, 'action' => True, 'method' => True, 'style' => True)];
$string += ['input' => array ('class' => True, 'action' => True, 'method' => True, 'style' => True)];
$string += ['select' => array ('class' => True, 'action' => True, 'method' => True, 'style' => True)];
return $string;
}
add_filter( 'pre_kses', 'my_filter_function_name' );
?>
Click here to go to the search page.
setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// $rows = $conn->query('SELECT COUNT(*) FROM BIRTHS WHERE $sqlend')->fetchColumn();
//echo $rows;
//if nothing found prints out the following.
if($rows == 0)
echo "No results were found";
else
{
$page_rows = 25;
$pages = new Paginator($rows,7,array(10,5,10,15,20));
// $pages->items_total = $rows;
// $pages->mid_range = 7;
// $pages->paginate();
if ($sortby != "")
// $sql_p = mysql_query("SELECT * FROM `BIRTHS` WHERE $sqlend ORDER BY $sortby $pages->limit");
$sql_p = mysql_query("SELECT * FROM `BIRTHS` WHERE $sqlend ORDER BY $sortby LIMIT $pages->limit_start,$pages->limit_end");
else
//$sql_p = mysql_query("SELECT * FROM `BIRTHS` WHERE $sqlend $pages->limit") or die(mysql_error());
//$stmt = $conn->prepare("SELECT * FROM `BIRTHS` WHERE $sqlend LIMIT :start,:end");
$sql_p = mysql_query("SELECT * FROM `BIRTHS` WHERE $sqlend LIMIT $pages->limit_start,$pages->limit_end") or die(mysql_error());
//$stmt->bindParam(':start', $pages->limit_start, PDO::PARAM_INT);
//$stmt->bindParam(':end', $pages->limit_end, PDO::PARAM_INT);
//$stmt->execute();
//$result = $stmt->fetchAll();
//construct the table.
$MyHeaderTD = "
echo "
#echo "
| "; $MyTDcenter = " | ";
$k = 0; | |||||||||||||||||||||||||||||||
| ".$row['VolumeNumber']." | ".$row['Parish']." | ".$row['BirthYear']." | ".$row['BirthMonth']." | ".$row['BirthDay']." | ".$row['BirthPlace']." | ".$row['Sex']." | ".$row['ChildForename']." | ".$row['FatherSurname']." | ".$row['FatherForename']." | ".$row['FatherTitle']." | ".$row['MotherForename']." | ".$row['MotherSurname']." | ".$row['MotherTitle']." | ".$row['BaptYear']." | ".$row['BaptMonth']." | ".$row['BaptDay']." | ".$row['AgeWhenBapt']." | ".$row['FatherOccupation']." | ".$row['FamilyReligion']." | ".$row['BaptBy']." | ".$row['VolumeReligion']." | ".$row['PageNumber']." | ".$row['NumberOnPage']." | ".$row['Remarks']." | ".$row['FHSNLnotes']." | ".$row['TranscribedBy']." | ".$row['DateTranscribed']." | ".$row['UniqueID']." |
";
echo "
";
echo "
";
echo $pages->display_pages();
# echo "\n";
# echo "xxx";
#xxx
// echo $pages->display_jump_menu(); echo " ";
// echo $pages->display_items_per_page();
}
}
?>
↑