options random home http://blackcat.brynmawr.edu/~nswoboda/scripts/bounce.c (Internet on a CD, 07/1998)

#include #include #include "./cgi.h" cgi_main(cgi_info *ci) { form_entry *params = NULL; params = get_form_entries(ci); print_mimeheader("text/html"); if (params == NULL) { cout << "Type your bounce request." << "
" << "
" << ""; return(1); } else { cout << "

The response from your bounce request.

" << parmval(params,"inp") << ""; return(1); } }