#!/usr/bin/pl -q -g main -s /* $Id$ Part of SWI-Prolog This example code is in the public domain */ :- use_module(library(cgi)). main :- cgi_get_form(Arguments), format('Content-type: text/html~n~n', []), format('~n', []), format('
~n', []), format('', []), print_args(Arguments), format('
~n~n', []), halt. print_args([]). print_args([A0|T]) :- A0 =.. [Name, Value], format('~w=~w