Hi, I hope you can help a 'newbie'.
Aim:
To create link to other sites with same 'member ID' with a query string.
eg:
Main page= www.test.com?id=MEMBER-ID
Hyperlinks= www.test2.com/MEMBER-ID
If no ID is in URL go to www.testa.com
I am using this for index.php
<?
if (!$_REQUEST["id"]){
$URL="http://www.testa.com";
header ("Location: $URL");
}else{
$id = $_REQUEST["id"];
}
?>
<html>
<body>
<a href="http://www.test2.com/<? echo $id ?>">
Click Here</a>
</body>
</html>
Works great except my friends who have Mac's receive an error message and can't view page.
Error: "The attempt to load 'http://www.test.com?id=XXX' failed".
Try to look into this further and found that users of Mac 9.1 and 9.2 receive error with IE 4.5 and 5.0.
Any suggestions or fixes will be appreciated.
Cheers
Adam