<?
# ft_chart.php - Displays a Family Tree Chart
# $Id: ft_chart.php,v 1.1.1.1 2004/01/01 05:51:24 rocket_169 Exp $
#
# Copyright (c) 2003 The phpFamilyTree Project Team
# Licensed under the GNU GPL. For full terms see the file COPYING.
#
# http://www.phpfamilytree.org
#
require_once ("config.php");
require_once ("functions.php");
require_once ("header.php");
$id = substr($_GET["id"],0,6);
addtomatrix($id,1,0);
balancematrix();
displaymatrix();
?>