I did this...
<?php
$my_email = 'myID;
$my_password = 'myPW';
$mystr = "EMail=$my_email&passwd=$my_password";
$url = "https://www.homier.com/security.asp?a=v&$mystr";
echo URLopen($url);
// code from PHP docs...
function URLopen($url)
{
// Fake the browser type
ini_set('user_agent','MSIE 4\.0b2;');
$dh = fopen("$url",'r');
$result = fread($dh,8192);
return $result;
}
?>
What I get back is this...
Unable to find wrapper "https"
- did you forget to enable it when you configured PHP?
I can't find any (real) reference to this anywhere.
Anyone have any ideas?
I'm on an NT, PHP 4.3.2
Walter Torres
======================================================================
Torres Development Group Systems Design & Development Services
web.torres.ws C++ Perl PHP
V:708-288-5859 F:714-908-8403 [d]HTML CSS Javascript
======================================================================
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php