#!c:/program files/perl/bin/perl -wT
use strict;
use CGI qw( :standard );
use CGI::Carp qw( fatalsToBrowser );
my $results = `BruceaBackprop.exe`;                 # backtics execute the .exe and captures the result
print header, 
start_html( -title => "FeedForward network using backpropagation", -bgcolor => "#ffffcc" ),
br, hr, $results, hr, br,
end_html;
