>>>>> "heddy" == heddy Boubaker <[EMAIL PROTECTED]> writes:

>> I liked the CGI functions to generate HTML ... it seems there is no
>> simple way to tell CGI module not to eat POST data. HTML::StickyForms
>> could be an option for forms ... the others (Template, Mason) are not
>> for what I'm trying to do. I'm just looking for a simple but complete
>> html generator (instead of hard coding all html tags in my code),
>> does such a beast exists or have I to write my own?
 
>From the CGI docs:

        To create an empty query, initialize it from an empty string
        or hash:

           $empty_query = new CGI("");

                  -or-

           $empty_query = new CGI({});

This gives you a CGI object that you can use to generate your html and
leave the query content alone.

HTHYO.

Peace.

Reply via email to