This is my photo album of friends, family and events. You will find photos of my handfasting ceremony, trips, conventions and much more.
Enjoy!
';
if ( $query_data['caption']) {
$html .= $query_data['caption'] ;
}
echo $html . "\n";
}
echo ' ';
}
mysqli_free_result( $result );
$result = mysqli_query($dbh, "SELECT page_id FROM photos WHERE page_id = '" . ( $requested_page + 1 ) . "'" );
if ( $result ) {
$mysql_query = mysqli_fetch_row( $result );
$nav_prev = $mysql_query[0];
}
mysqli_free_result( $result );
$result = mysqli_query($dbh, "SELECT page_id FROM photos WHERE page_id = '" . ( $requested_page - 1 ) . "'" );
if ( $result ) {
$mysql_query = mysqli_fetch_row( $result );
$nav_next = $mysql_query[0];
}
mysqli_free_result( $result );
write_navbar_lateral( 'photos', $_SERVER['PHP_SELF'], $requested_page );
?>