<< < 2 3 4 5 6 7 8 >   ∑:177  Sort:Date

Using Hash Variables
This section describes how a hash variable can be assigned with a list value. Hash elements are referred by key subscription notation as scalar expressions, like $identifier{'key'}. An unassigned hash variable contains the (undef) value.
2022-10-12, ∼186🔥, 0💬

CGI (Common Gateway Interface)
This chapter provides tutorial examples and notes on CGI (Common Gateway Interface). Topics include CGI protocol specifications; environment variables provided by IIS; CGI query string; CGI example program.
2022-11-02, ∼185🔥, 0💬

Retrieving Environment and Script Information
This section provides a tutorial example on how to retrieve information about the Web server environment and about the current CGI script file.
2022-11-06, ∼184🔥, 0💬

Publishing HTML Documents as Web Pages
This section describes how to publish a HTML document on the Apache HTTP server.
2022-10-17, ∼184🔥, 0💬

What Is XML-RPC?
This section describes what is XML-RPC - a specification on how to make a Remote Procedure call (RPC) by passing XML messages using HTTP requests and responses over the Internet.
2022-11-02, ∼180🔥, 0💬

Receiving Returning Values as a HTTP Response
This section describes how to receive the returning value XML message from the remote machine.
2022-10-11, ∼180🔥, 0💬

dbmopen() - Opening DBM Files with Hash Variables
This section describes the built-in function, dbmopen(), to open DBM database files with hash variables.
2022-10-10, ∼179🔥, 0💬

File Test Operators
This section provides a tutorial example on using file test operators to return information about a file or a directory in the file system. For example, -e tests if a file exists or not.
2022-10-10, ∼179🔥, 0💬

Installing RPC::XML Module
This section provides a tutorial example on how to install the Perl module, RPC::XML 0.57, on Windows, downloaded from blackperl.com.
2022-10-06, ∼179🔥, 0💬

Variables - Scalar, Array and Hash
This section describes Perl variable types: Scalar, Array, and Hash. Variable names must be prefixed with special symbols to indicate their types, $, @ and %.
2022-11-02, ∼178🔥, 0💬

What Is an Expression?
This section describes what is an expression, a mixture of values, variables, operations of expressions and function calls. A tutorial example is provided to show you examples of expressions..
2022-10-18, ∼178🔥, 0💬

post() Method not Following Redirect Location
This section provides a tutorial example showing that the LWP::UserAgent post() method does not follow the redirect 'Location:' header line in the HTTP response header.
2022-10-07, ∼178🔥, 0💬

Performance of Perl substr() and index()
This section provides a tutorial example to test performance of 2 Perl built-in functions: substr() and index() on a Window 2000 system.
2022-10-24, ∼177🔥, 0💬

Expression Evaluation Context
This section describes expression evaluation contexts: scalar context and list context. Operations and function may behave differently in different context. A list value in a scalar context is converted by taking the last value.
2022-10-19, ∼177🔥, 0💬

"package" Statement - Switching Name Space
This section provides a tutorial example on how to switch name space with the 'package' statement and how to access identifiers from other name space with double colon '::'.
2022-11-24, ∼176🔥, 0💬

List Value Constructors
This section describes what is a list value constructor, a list of scalar values separated by commas. Elements of a list value can be accessed with the subscription notation [i].
2022-10-31, ∼176🔥, 0💬

DirGrep.pl - Searching Text in Directory Files
This section provides a tutorial example, DirGrep.pl, to search text in files and sub directories using a recursive method to walk through a directory tree.
2022-10-23, ∼176🔥, 0💬

Imager - Draw Graphical Elements
This section provides a tutorial example on how to draw graphical elements using line(), box(), circle() functions of the Perl Imager module.
2022-10-12, ∼176🔥, 0💬

Defining Returning Values of a Remote Method Call
This section describes how returning values of a remote method call can be defined in XML format. The root element name is 'methodResponse'.
2022-10-05, ∼176🔥, 0💬

Debugging Tutorial Session
This section provides a debugging tutorial session to investigate a script by setting break points, stepping through each statement, printing variable values.
2022-11-09, ∼175🔥, 0💬

RpcXmlServer.pl - RPC::XML Server Sample Program
This section provides a tutorial example on how to write a RPC::XML server sample program, RpcXmlServer.pl, supporting 3 remote methods: com.herong.hello, com.herong.getCelsius, and com.herong.getInfo.
2022-11-24, ∼170🔥, 0💬

GameClient.pl - XML Communication Client Example
This section provides a tutorial example on how write an XML communication client program to connect to a server, send and receive XML messages.
2022-11-10, ∼170🔥, 0💬

Install Perl Module from Source Code
This section provides a tutorial on how to install Perl module from source code using the 'make' utility manually on macOS.
2022-10-10, ∼170🔥, 0💬

SubParamAlias.pl - Example on Parameters as Alias
This section provides a tutorial example on how parameters are passed as aliases - modifying the value of a parameter will cause the value of the original variable updated in caller's code.
2022-11-18, ∼168🔥, 0💬

<< < 2 3 4 5 6 7 8 >   ∑:177  Sort:Date