changed phones.pl

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@190 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2001-11-19 23:20:52 +00:00
parent 10394c4c99
commit dd31b28cf8
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
:- ensure_loaded(library(pillow)).
main :-
get_form_input(Input),
get_form_value(Input,person_name,Name),
response(Name,Response),
output_html([
cgi_reply,
start,
title('Telephone database'),
heading(2,'Telephone database'),
--,
Response,
start_form,
'Click here, enter name of clip member, and press Return:',
\\,
input(text,[name=person_name,size=20]),
end_form,
end]).
response(Name, Response) :-
form_empty_value(Name) ->
Response = []
; phone(Name, Phone) ->
Response = ['Telephone number of ',b(Name),': ',Phone,$]
; Response = ['No telephone number available for ',b(Name),'.',$].
phone(daniel, '336-7448').
phone(manuel, '336-7435').
phone(sacha, '543-5316').