kmp has asked for the wisdom of the Perl Monks concerning the following question:
$curlargs = "PassPhrase=$pp"; $curlargs .= "&AccountID=$accountfrom"; $sysstring = "curl -s -d "; $sysstring .= '"'; $sysstring .= $curlargs; $sysstring .= '"'; $sysstring .= " https://www.e-gold.com/acct/balance.asp"; # read everything into one buffer undef $/; open(curls, "$sysstring|"); while(<curls>){$return = $_} close curls; print "Content-Type: text/html\n\n"; print "$return";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: cURL help
by elusion (Curate) on Feb 16, 2003 at 17:13 UTC | |
by kmp (Initiate) on Feb 16, 2003 at 22:32 UTC | |
by jasonk (Parson) on Feb 16, 2003 at 22:38 UTC | |
by kmp (Initiate) on Feb 16, 2003 at 19:24 UTC | |
by elusion (Curate) on Feb 16, 2003 at 19:36 UTC | |
by kmp (Initiate) on Feb 16, 2003 at 20:37 UTC | |
by kmp (Initiate) on Feb 16, 2003 at 20:06 UTC | |
|
Re: cURL help
by Ryszard (Priest) on Feb 16, 2003 at 17:50 UTC |