Results 1 to 6 of 6

Thread: Cgi, Php, Ssi

  1. #1

    Cgi, Php, Ssi

    Can anyone tell me what CGI, PHP and SIS are.

    Thanks!

  2. #2
    try this: www.google.com and http://www.tldp.org/ to answer your questions about CGI and PHP.
    http://www.php.net/ is the official site for php.

    SiS is a chip manufacturer, and their website is http://www.sis.com/ .

    Hope this helps, and good luck.

  3. #3
    Senior Member
    Join Date
    Nov 2001
    Location
    Ireland
    Posts
    734
    CGI and PHP are used for server-side scripts and web applications.
    SSI (I assume you mean SSI and not SIS) means ``server-side includes`` and you can add the contents of one page into another.

  4. #4
    Senior Member cwk9's Avatar
    Join Date
    Feb 2002
    Posts
    1,207
    Can anyone tell me what CGI, PHP and SIS are.
    Maybe he wanted to know about the Swedish Standards Institute
    http://www.sis.se/

  5. #5
    Senior Member
    Join Date
    Mar 2002
    Posts
    502
    Bleh.

  6. #6
    Senior Member roswell1329's Avatar
    Join Date
    Jan 2002
    Posts
    670
    CGI -- Common Gateway Interface. A standard for external gateway programs to interface with information servers such as HTTP servers. Basic scripts using languages like Python, PERL, and C that run on the server use CGI to communicate their results back to the HTTP server. (taken from the NSCA http://hoohoo.ncsa.uiuc.edu/cgi/)

    PHP -- PHP: Hypertext Preprocessor. (see recursive acronym in the jargon file). A unique scripting language for creating, and manipulating web pages on the fly. Extremely useful tool for database driven websites because of it's simple database interface functions.

    SSI -- Server Side Includes. While standard HTML files are fine for storing pages, it is very useful to be able to create some content dynamically. For example, to add a footer or header to all files, or to insert document information such as last modified times automatically. This can be done with CGI, but that can be complex and requires programming or scripting skills. For simple dynamic documents there is an alternative: server-side-includes (SSI).

    SSI lets you embed a number of special 'commands' into the HTML itself. When the server reads an SSI document, it looks for these commands and performs the necessary action. For example, there is an SSI command which inserts the document's last modification time. When the server reads a file with this command in, it replaces the command with the appropriate time. (taken from Apache Week, http://www.apacheweek.com/features/ssi)


    Put simply, they're all web tools
    /* You are not expected to understand this. */

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •