I have done that i replaced image with login button but still the problem is same . have u seen the file myindex.php file is code right that there are some td and tr in capital . Is there can be any problem or submit button having value like login2 and we are just checking it like $_SESSION. Is this can be probem for firefox or not.
If we will have to wait any another person who can solve our problem.
Thanks,
Gagan
No.. td and tr is not the cause of your problem. I am trying to create the exact scenario and I see your problem.. The problem is with
window.location="hoa.php?login=T";
Internet explorer is able to retain the sessions while firefox is failing to. I am not sure why it (Firefox) is able to save certain session variables and not all.. To see what I am talking about, check these scripts.
This is myindex.php (Don't overwrite your file. This is just a dummy file, so save it in a new location).
<?php
session_start(); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> Login - Ward, Damon and Posner, P.A.</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="/stylie.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.inputbox {border:1px solid #dfdfe3}
.inputbox1 {border:1px solid #dfdfe3; height:22px;}
-->
</style>
</head>
<DIV class=statusmessage dir=ltr></DIV>
<script language="javascript">
<!--
function validate(form)
{ if (form.user.value=="")
{ alert("User Name cannot be blank. Please enter it.");
form.user.focus(); return false;
} …