I like to transform an old program using the CGI external lib to a new one using the new built-in CGI functions, I'm completely newbie with CGI:
Code: Select all
CGI_In()
string$=CGI_Val("string")
string$=UCase(string$)
CGI_Header()
CGI_Out(string$)
End