PHP: Cybercash payment f�ggv�nyek - Manual
PHP  
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links 
search for in the  
previouscurl_versioncybercash_base64_decodenext
Last updated: Fri, 30 Aug 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 | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Swedish | Turkish

XIII. Cybercash payment f�ggv�nyek

Ezek a f�ggv�nyek csak akkor haszn�lhat�ak, ha az �rtelmez� a --with-cybercash=[DIR]-rel lett leford�tva. Ezek a f�ggv�nyek a PHP 4-ben haszn�lhat�ak.

Tartalom
cybercash_base64_decode -- base64 k�dolt adatot visszafejt Cybercash sz�m�ra
cybercash_base64_encode -- base64 k�dolja az adatot Cybercash sz�m�ra
cybercash_decr -- cybercash visszafejt�s
cybercash_encr -- cybercash titkos�t�s
User Contributed Notes
Cybercash payment f�ggv�nyek
add a note about notes
[email protected]
07-Jul-2000 01: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 03: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]
31-Jul-2000 11: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 04: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: Fri, 30 Aug 2002
show source | credits | stats | mirror sites
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Sat Aug 31 06:19:44 2002 CEST