#-------------------------------------------------
# attempt to write data out to a file here.
# doesn't work. nothing writes out.
if($form_data{'email'}) {
# if there's an email address, let's add it as a link
print GUESTBOOK "
$form_data{'name'} - $form_data{'city'},
$form_data{'location'}\n";
}
else {
# otherwise, just add their name
print GUESTBOOK "From: $form_data{'name'} \n";
}