and fopen too .
but how to pass user and password using require, include and fopen ?
I explain better .
I have a webform to permit some user to login on neomail (Webmail software) ; on the webform they enter user ($user) and a password ($password) ; after that a simple php script was passing the $user and $password results in this way
<?
header("Location: http://$user:$password@mydomain.com/neomail.php");
?>
OK , it was working fine for years . It's stopped to work latest week after latest IE security patch !
With latest IE patch , http://user:password@domain.com is no more allowed .
So , now, I am searching an alternative way to login my users
to http://$user:$password@host/neomail.php
I don't know if exists a php solution . Any idea?
Thank you