• home
  • forum
  • my
  • kt
  • download
  • this:2/2 25records  total:48    Start  Previous  Next  Last    goto:
    CGI Script FAQs
    ON: 2007-08-10 10:20:05
    Answers to general questions on running CGI scripts and programs. Topics include: Getting Started (Can you run CGI, Script Filename, Test Before Going Public), Beginning a Script, File Permissions, Editing a UNIX Script in DOS/Win, Testing the Script Locally, CGI Paths, and Web Testing.
    4 times | category: [Frequently Asked Questions]
    PERL Files & I/O
    ON: 2007-08-10 10:19:00
    This tutorial will make you aware of everything you want to learn about file handling in PERL
    20 times | category: [File Manipulation]
    Perl Tutorials - Input and Output in Binary Mode
    ON: 2007-08-10 10:18:20
    This tutorial describes:

    How to open files for input in binary mode.
    How to open files for output in binary mode.
    Example program to copy binary files
    Example program to convert binary data to hex numbers.
    Opening Files for Binary Input
    32 times | category: [File Manipulation]
    Files in Perl
    ON: 2007-08-10 10:16:03
    This tutorial walks through using files in Perl.
    32 times | category: [File Manipulation]
    Handling file uploading from www forms with CGI.pm
    ON: 2007-08-10 10:14:03
    This tutorial shows how to handle file uploads from web forms in your CGI programs using Perl and CGI.pm.
    1 times | category: [File Manipulation]
    Sending mail with sendmail
    ON: 2007-08-10 10:13:07
    Find out how to use sendmail (or other similar mail-serving software) to send e-mail from within your script. It presents a very simple program that emails a confirmation to a user that his/her request to subscribe to a newsletter has been accepted.
    4 times | category: [Email Systems]
    The elegance of JAPH: Just Another Perl Hacker
    ON: 2007-08-10 10:05:54
    A mainstay of the Perl culture, JAPH is a short script that produces the output "Just another Perl hacker." Although written for the beginner or intermediate Perl programmer, this article examines a few simple examples of the JAPH genre that will surprise and engage even the most seasoned devotee.
    1 times | category: [Development]
    Using CGI::Application
    ON: 2007-08-10 10:01:09
    The author writes "CGI::Application builds upon the bedrock of CGI, adding a structure for writing truly reusable Web-applications. CGI::Application takes what works about CGI and simply provides a structure to negate some of the more onerous programming techniques that have cast an unfavorable light upon it. CGI::Application code is so universal and non-proprietary that it works exceedingly well on any operating system and Web server that supports Perl and CGI. The CGI::Application structure makes it possible for authors to distribute, for the first time, fully functional and sophisticated Web-applications via CPAN.
    4 times | category: [Development]
    Genetic algorithms applied with Perl
    ON: 2007-08-10 09:57:03
    Based on the Darwinian principle of survival of the fittest, genetic programming uses mutation and replication to produce algorithms for creating ever-improving computer programs. In this column, you'll get to know the genetic algorithm in simple terms. This article provides Perl implementations for some specific tasks, which you can adapt for generic use. To demonstrate the genetic algorithm, the author breeds numbers for fitness to a formula, and letters to form English words.
    4 times | category: [Development]
    Sorting Techniques
    ON: 2007-08-10 09:56:10
    An introduction to sorting, and how to write your own sorting functions easily with perl. Includes some very common examples of sorts.
    4 times | category: [Development]
    Printing all CGI environment variables
    ON: 2007-08-10 09:55:28
    This article provides a short CGI program that can print every environment variable it knows.
    4 times | category: [Development]
    CGI Environmental Variables
    ON: 2007-08-10 09:54:55
    One of the methods that the web server uses to pass information to a cgi script is through environmental variables. These are created and assigned appropriate values within the environment that the server spawns for the cgi script. This page highlights some of the most commonly used ones, along with a brief description and notes on possible uses for them.
    1 times | category: [Development]
    Debugging CGI Scripts
    ON: 2007-08-10 09:54:20
    Hints and tips on debugging Perl CGI scripts and identifying some possible causes of server errors.
    4 times | category: [Development]
    User Info
    ON: 2007-08-10 09:50:43
    This note describes how to get information about a remote user from within a CGI-bin script, and lists the information available.
    0 times | category: [Development]
    A short guide to DBI
    ON: 2007-08-10 09:47:29
    Here is a short guide to DBI (The Perl Database Interface Module). Topics include: General information about relational databases, Example of How to Use DBI, Cached Queries, Transactions, and more.
    12 times | category: [Database Related]
    Disk-based Data Structures (DBM)
    ON: 2007-08-10 09:39:38
    For those who don't want to get tied up with a relational database and all the supporting software needed, yet still need to store a dataset to disk for future use, this tutorial provides several Perl DBM, or database management, solutions which have much less overheard than DBI and are a quick way to store and use Perl data structures to and from disk.
    14 times | category: [Database Related]
    Using a flat-file database in Perl
    ON: 2007-08-10 09:35:55
    Web developers often need ways of speeding up the development process, without spending thousands of dollars for software. Here's how to build an easy to use flat-file database in Perl and access it via a web page.
    143 times | category: [Database Related]
    Adding an Access Counter
    ON: 2007-08-10 09:20:39
    CGI programs can make your Web pages dynamic, and one popular application of CGI is the addition of an access counter. An access counter is a text or graphical representation of the number of times that your Web page has been requested. Access counters work either by including a CGI script within an HTML page with Server Side Includes or the < IMG > tag, or by generating the entire HTML page from a CGI script. When a user requests the HTML page containing an access counter, the CGI script checks the current access count, increments it by one, and displays the results in the Web page. Many Web sites have added access counters to their home pages.
    2 times | category: [Counters]
    Create your own Image Counter
    ON: 2007-08-10 09:10:33
    This is a comprehensive tutorial on how to create your own image counter CGI on your Web page. Main topics include: Make the CGI Directory, Make A Directory for the Counter's Files, Altering the Script For Your Server, Find the Absolute Path, Turn on the CGI/COUNT Directories, Getting A Count On A Page, Locking Out Others, and more. Full source code is available
    1 times | category: [Counters]
    Cookie Monsters
    ON: 2007-08-10 09:08:53
    This article discusses some of the wrong ways for using cookies, and how to use them safely.
    4 times | category: [Cookies]
    Ace Perl Template Creator
    ON: 2007-08-10 09:07:16
    This is a short code snippet to create easily modifiable html templates for use in your perl cgis. Hate having to place all the print statements in your program and having to escape all those quotes? Would you like to give the ability for people who don't know how to program in perl to customize the output of your cgis? Templates are the answer.
    1 times | category: [Content Management]
    Flexible CGI Output with HTML Templates
    ON: 2007-08-10 09:05:18
    This article describes a simple and effective method to format a CGI script's output from HTML templates, by replacing special template directives with dynamic content on the fly.
    5 times | category: [Content Management]
    A web client for MP3 streaming in perl
    ON: 2007-08-10 09:03:17
    This article is a complete tutorial showing how to create your own streaming web clients, that can be used to stream (play while downloading) multimedia files such as mp3.
    3 times | category: [Audio System]
    this:2/2 25records  total:48    Start  Previous  Next  Last    goto: