recent searches:
include functions ,
variable functions ,
post functions...
If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.
PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.
These functions interface the CCVS API, allowing you to work directly with CCVS from your PHP scripts. CCVS is RedHat's solution to the "middle-man" in credit card processing. It lets you directly address the credit card clearing houses via your *nix box and a modem. Using the CCVS module for PHP, you can process credit cards directly through CCVS via your PHP Scripts. The following references will outline the process.
Note: CCVS has been discontinued by Red Hat and there are no plans to issue further keys or support contracts. Those looking for a replacement can consider MCVE by Main Street Softworks as a potential replacement. It is similar in design and has documented PHP support!
This extension has been removed from PHP and is no longer available as of PHP 4.3.0. If you want to use credit card processing features you can use MCVE instead.
To enable CCVS Support in PHP, first verify your CCVS installation
directory. You will then need to configure PHP with the --with-ccvs option. If you use this
option without specifying the path to your CCVS installation, PHP
will attempt to look in the default CCVS Install location
(/usr/local/ccvs). If CCVS is in a non-standard location,
run configure with: --with-ccvs=[DIR], where
DIR is the path to your CCVS installation. Please note that CCVS support
requires that DIR/lib and DIR/include exist, and include
cv_api.h under the include directory and
libccvs.a under the lib directory.
Additionally, a ccvsd process will need to be running for the configurations you intend to use in your PHP scripts. You will also need to make sure the PHP Processes are running under the same user as your CCVS was installed as (e.g. if you installed CCVS as user 'ccvs', your PHP processes must run as 'ccvs' as well.)
RedHat has discontinued support for CCVS; however, a slightly outdated manual is still available at http://www.redhat.com/docs/manuals/ccvs/.
Another Useful functions:
ref.ccvs | function.ccvs-void | function.ccvs-textvalue | function.ccvs-status | function.ccvs-sale | function.ccvs-reverse | function.ccvs-return | function.ccvs-report | function.ccvs-new | function.ccvs-lookup | function.ccvs-init | function.ccvs-done | function.ccvs-delete | function.ccvs-count | function.ccvs-command | function.ccvs-auth | function.ccvs-add |
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.