mike wrote:
you're still issuing an HTTP request to get it, or executing perl on
the command line...
if it's a true non-profit 503(c)(3), you could offer someone the
chance to write off their services... non-profits may not have a lot
of money to spare but they do typically have money to fund things in
the organization's interests... hopefully.
Well, heh, I am really the only person behind my organization, and I'm
under 18, so I can't get a PayPal account or whatever and accumulate
donations either.
However, I did find a cURL solution: this is the code behind it for
anyone else who had/has this problem:
<?php
$ch = curl_init();
curl_setopt($ch,
CURLOPT_URL,"http://goldenlightsoft.org/cgi-bin/lt/linktrade.cgi?want=ssilinks");
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result=curl_exec ($ch);
curl_close ($ch);
echo $result
?>
Now, I just need to look into parsing the text.
Thanks everyone for your assistance, I'll be sure to come back here and
frustrate you with any future problems I have. :] :P
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php