Closed Thread
Results 1 to 7 of 7

Thread: cgi code to include text files

  1. #1
    Senior Member dscikate is an unknown quantity at this point dscikate's Avatar
    Join Date
    Jun 2001
    Location
    usa
    Posts
    184

    Post cgi code to include text files

    what's the code to include text files in cgi?
    best regards,
    The pbxanime.com webmaster

  2. #2
    Kaliber Kaliber has a spectacular aura about Kaliber's Avatar
    Join Date
    Sep 2001
    Posts
    2,800
    Code:
    require "file.txt";
    &statement;

    Have all your statements in the file.

  3. #3
    striking reality niv has disabled reputation niv's Avatar
    Join Date
    Dec 2000
    Location
    New York, NY
    Posts
    7,344
    or...

    open (TEXT,"mytextfile.txt");
    print join('<br>', (<TEXT>));
    close (TEXT);
    the poster formerly known as needcgispace - NOTHING!
    Obsidian Hosting Networks - Head Admin - Changing the way you play the game.
    URL: http://www.obhost.net/
    IRC: irc.gamesurge.net/obhost

  4. #4
    Senior Member dscikate is an unknown quantity at this point dscikate's Avatar
    Join Date
    Jun 2001
    Location
    usa
    Posts
    184
    thanx i think i will use the second one maybe
    best regards,
    The pbxanime.com webmaster

  5. #5
    Kaliber Kaliber has a spectacular aura about Kaliber's Avatar
    Join Date
    Sep 2001
    Posts
    2,800
    ok, I suppose you are new to perl

  6. #6
    striking reality niv has disabled reputation niv's Avatar
    Join Date
    Dec 2000
    Location
    New York, NY
    Posts
    7,344
    MindRash, he wanted to include text files, not subroutines or statements.

    dscikate, here's another version:

    print "<pre>\n";
    open (TEXT,"mytextfile.txt");
    for (<TEXT>){
    print $_
    }
    close (TEXT);
    print "</pre>\n";
    the poster formerly known as needcgispace - NOTHING!
    Obsidian Hosting Networks - Head Admin - Changing the way you play the game.
    URL: http://www.obhost.net/
    IRC: irc.gamesurge.net/obhost

  7. #7
    Senior Member dscikate is an unknown quantity at this point dscikate's Avatar
    Join Date
    Jun 2001
    Location
    usa
    Posts
    184
    well thanx again i only know how to set up cgi i can't really write it like you guy's
    best regards,
    The pbxanime.com webmaster

Closed Thread

Bookmarks

Posting Permissions

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