php and no session id with Netscape 6.2

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
wolf
Forum Newbie
Posts: 3
Joined: Sun Oct 13, 2002 9:54 am

php and no session id with Netscape 6.2

Post by wolf »

Hi,

I just discovered that my <back> link does not work with the Netscape browser 6.2 (it does with NS 4.7, and with IE 5 and 6) - and now I don't know if this is a bug of NS or of my code...

Here it goes: in my htt file I have the following line:

If any of the information you have provided is incorrect, please <a href="<backlink>" onmouseout="window.status=''; return true" onmouseover="window.status='Go back to the previous page - do not use the ''Back'' button of your browser'; return true" title="Go back to the previous page - do not use the 'Back' button of your browser">go back to the previous page</a> and change it.

and in my php script I have the following command:

$ChangePage = str_replace ( "<backlink>",
"change4.php?$SID",
$ChangePage );

Now, in Netscape 6.2 the parameter $SID is empty..., thus the link is:

change4.php?

without the session ID and thus of course my form remains empty.

Help is very much appreciated!

Thanks - and a happy new year!
Post Reply