Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: manishrathi
  • Order by date
  1. manishrathi

    Environment variables for different threads

    When a request is received by the server for CGI, the parameters it receives are through QUERY_STRING environment variable. So QUERY_STRING is the environment variable for a server and when a request is received, it holds the string that comes with that request. Now, if a second request comes in...
  2. manishrathi

    What kind of file is an email ?

    Picture , video, sound are binary files. Because internet isnt capable of directly handling binary files in e-mail the file is first encoded in one of variety iof encoding schemes and this file is received as an attachment. Question is, what kind of file is email itself. Since message is all...
  3. manishrathi

    STDIN in cgi script

    When a web server receives an HTTP request directed to CGI script, it reads the headers and passes the content body of message to CGI script on STDIN." To pass a parameter from cmd line, we use <stdin>. In the cgi script, I did not use <stdin> anywhere in the script, so how will parameter be...
  4. manishrathi

    GET and POST methods in CGI

    http://localhost/cgi-bin/server_info.cgi When a web server(apache on my local m/c), receives this request, it reads the HTTP headers and passes content body of message to CGI. In a request, when do we send any content ? we just type the web address and send the request. Does it refer to form...
  5. manishrathi

    Output from CGI

    Does CGI reside outside the web server ? Is CGI invoked on anywhere else than web server ? If CGI is on web server in /cgi-bin directory. So whenevr a CGI is invoked, it is processed on web server only and output is on web server only. So where is the question of sending output to web server ...
  6. manishrathi

    Output from CGI

    I have CGI on Apache server. When a request comes in for this CGI, server invokes CGI and output is sent back to the client. When I was reading book on CGI, this sentence I could not understand. "Once CGI program starts running, it sends its output back to the web server via standard output."...

Part and Inventory Search

Back
Top