PHP  
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links 
search for in the  
previouscurl_versioncybercash_base64_decodenext
Last updated: Tue, 03 Sep 2002
view the printer friendly version or the printer friendly version with notes or change language to English | Brazilian Portuguese | Chinese | Czech | Dutch | Finnish | French | German | Hungarian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Swedish | Turkish

XIII. Funzioni di pagamento Cybercash

Istallazione

Queste funzione sono disponibili solo se l'interprete � stato compilato con l'opzione --with-cybercash=[DIR].

Sommario
cybercash_base64_decode -- Decodifica dei dati in base64 per Cybercash
cybercash_base64_encode -- Codifica dei dati in base64 per Cybercash
cybercash_decr -- Decrifrazione Cybercash
cybercash_encr -- Criptazione Cybercash
User Contributed Notes
Funzioni di pagamento Cybercash
add a note about notes
[email protected]
07-Jul-2000 02:54

**Posted to the newgroup by Mike Robinson <[email protected]> **

In the php4 source, under ext/cybercash, you'll see a couple of files with
sample snippets in them, cyberlib.php and test.php. The mck comes with some
documentation as well. (Note, in the php3 source, the dir is extra/cyberlib)
Other than that, I've seen very little.

[email protected]
17-Jul-2000 04:34

The cyberlib.php file is a library of functions for use with your Cybercash transaction php files. The test.php file contains an example transaction that is very simple:

$merchant=""; /* Your merchant ID goes here. */
$merchant_key=""; /* Your merchant key goes here. */
$payment_url="
$auth_type="mauthonly";

$response=SendCC2_1Server($merchant,$merchant_key,$payment_url,
$auth_type,array("Order-ID" => "2342322",
"Amount" => "usd 11.50",
"Card-Number" => "4111111111111111",
"Card-Address" => "1600 Pennsylvania Avenue",
"Card-City" => "Washington",
"Card-State" => "DC",
"Card-Zip" => "20500",
"Card-Country" => "USA",
"Card-Exp" => "12/99",
"Card-Name" => "Bill Clinton"));

while(list($key,$val)=each($response))
{
echo $key."=".$val."
";
}

For all those without source; hope this helps.

[email protected]
01-Aug-2000 12:18

We use cybercash and php for all our website's financial transactions. I developed CyberClass () as a clean up and extension of CyberLib. I recommend that you use CyberClass over CybeLib.
[email protected]
27-May-2001 05:36

Cybercash was recently going through bankruptcy, and their payments business has been purchased by Verisign. VS plans to "integrate the best features of Payflow and CyberCash" I speculate that this could mean changes in the software interface in the future.
add a note about notes
previouscurl_versioncybercash_base64_decodenext
Last updated: Tue, 03 Sep 2002
show source | credits | stats | mirror sites
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Fri Sep 6 12:35:50 2002 CEST