Description
string
pfpro_process_raw
( string parameters [, string address [, int port [, int timeout
[, string proxy address [, int proxy port [, string proxy logon
[, string proxy password]]]]]]])
Ejemplo
1
.
?php
pfpro_init(
)
;
$response
=
pfpro_process("USER=mylogin
PWD[5]=m
ndy
TRXTYPE=S
TENDER=C
AMT=1.50
ACCT=4111111111111111
EXPDATE=0904")
;
if
(!$response
)
{
die("Couldn't
establish
link
to
Verisign.\n")
;
}
echo
"Verisign
raw
response
was
".$response
;
pfpro_cleanup()
;
?
|
|