#!/bin/sh
echo 'content-type: text/html'
echo
echo '<body background=/background.gif>'
echo '<center>'
/usr/local/sql/bin/psql -q -T border -d apples -H << !
    \C Scores for $QUERY_STRING
      select 
	user, score from scores where user='$QUERY_STRING' order by score desc;

echo '</center>'

!
#     select score
# 	from scores
# 	where user='$QUERY_STRING';
