' Gambas module file PUBLIC SUB Main() PRINT CGI.Encode("astreintes+2007-2008.htm") END PUBLIC SUB Log(sMsg AS String) DIM hFile AS File hFile = OPEN "/tmp/session.log" FOR APPEND PRINT #hFile, sMsg CLOSE #hFile END