Re: Few Small Questions Regarding CGI

2010-02-16 Thread Lawrence D'Oliveiro
In message <631b0785-38db-4c12- a82a-7b11e2235...@o16g2000prh.googlegroups.com>, joy99 wrote: > Is there any other material or URL for step by step learning of CGI. There’s the official spec here . -- http://mail.python.org/mailman/listinfo/py

Re: Few Small Questions Regarding CGI

2010-02-15 Thread Tim Roberts
joy99 wrote: > >I am trying to learn CGI. I was checking Python Docs. There are >multiple modules. Which one to start with? Well, it seems to me that the first place to start is the built-in CGI module, in "cgi.py". I'm not aware of any other CGI-based modules in the standard library. -- Tim Ro

Re: Few Small Questions Regarding CGI

2010-02-15 Thread John Gordon
In <631b0785-38db-4c12-a82a-7b11e2235...@o16g2000prh.googlegroups.com> joy99 writes: > Can I use my personal computer as a client as well as a server? Yes, if you install a web server on your PC. You would then use "localhost" in your browser instead of a standard web address. Assuming you'r

Re: Few Small Questions Regarding CGI

2010-02-15 Thread Mel
joy99 wrote: > Dear Group, > > I am trying to learn CGI. I was checking Python Docs. There are > multiple modules. Which one to start with? > Is there any other material or URL for step by step learning of CGI. > > My next question is: > I want to test it. I have a small personal computer. I hav

Re: Few Small Questions Regarding CGI

2010-02-15 Thread Jonathan Gardner
On Feb 15, 2:04 pm, joy99 wrote: > > I am trying to learn CGI. I was checking Python Docs. There are > multiple modules. Which one to start with? > Is there any other material or URL for step by step learning of CGI. > I would suggest skipping 15 years of internet progress and going with a more m

Few Small Questions Regarding CGI

2010-02-15 Thread joy99
Dear Group, I am trying to learn CGI. I was checking Python Docs. There are multiple modules. Which one to start with? Is there any other material or URL for step by step learning of CGI. My next question is: I want to test it. I have a small personal computer. I have internet but is connected by

Re: regarding cgi

2005-06-14 Thread db
I think you should give another header: Content-type: text/html regards Arjen On Tue, 14 Jun 2005 07:00:09 +0100, praba kar wrote: > Dear All, > > I have doubt regarding headers in cgi > programming. If I gives "Content-Type:text/plain" > then I try to print html contents. Is righ

Re: regarding cgi

2005-06-13 Thread Fredrik Lundh
"praba kar" wrote: > I have doubt regarding headers in cgi > programming. If I gives "Content-Type:text/plain" > then I try to print html contents. Is right or wrong > after giving content-type: text/plain? if you expect the HTML contents to appear as HTML, it's wrong. (some web bro

regarding cgi

2005-06-13 Thread praba kar
Dear All, I have doubt regarding headers in cgi programming. If I gives "Content-Type:text/plain" then I try to print html contents. Is right or wrong after giving content-type: text/plain? regards Prabahar ___