Hi,
I am building an intranet site for my office,
from a menu I call a file ict.php?command=samba
which opens that file in another frame.
in that file I have the following structure:
<?php
$command = $HTTP_GET_VARS[command];
switch($command)
{ case "samba":
{
header ("location:http://10.0.0.1:901/");
}
break;
....etc
}
?>
Is it possible to send the username and password with the headerinfo like:
header ("location:http://user:password@10.0.0.1:901/");
I tried this but it does not work.
When I use the <meta http-equivalent blabla> the username and password will work but it keeps running in a loop.
So the page will not load.
Somebody?
TIA!
Bram.