This is a discussion on My form or windows? within the PHP Language forums, part of the PHP Programming Forums category; Hi A strange thing happens.... when loggin in and out from an app that I am doing, as a number ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi
A strange thing happens.... when loggin in and out from an app that I am doing, as a number of users with different rights for testing, something wierd happens... 1) sometimes, when logging in as a, the b, it offers "b" or a's password as password 2) sometimes it offers passwords as usernames Is it my form which causes this, or window is just behavining weird? I should add, that the name of the form is alway the same, so is the url, and the name of the to fields are not in English, so it is not username/password. WBR Sonnich |
|
|||
|
On 13 Dec, 10:32, jodleren <sonn...@hot.ee> wrote:
> Hi > > A strange thing happens.... when loggin in and out from an app that I > am doing, as a number of users with different rights for testing, > something wierd happens... > 1) sometimes, when logging in as a, the b, it offers "b" or a's > password as password > 2) sometimes it offers passwords as usernames > > Is it my form which causes this, or window is just behavining weird? > I should add, that the name of the form is alway the same, so is the > url, and the name of the to fields are not in English, so it is not > username/password. > > WBR > Sonnich It could be your form and the way the browser interprets the names of the fields. It will not be windows itself. Since you haven't shown us the form, nor told us which browser you are using, we can't really be any more helpful. |
|
|||
|
On Dec 13, 2:18 pm, Captain Paralytic <paul_laut...@yahoo.com> wrote:
> On 13 Dec, 10:32, jodleren <sonn...@hot.ee> wrote: > > > > > > > Hi > > > A strange thing happens.... when loggin in and out from an app that I > > am doing, as a number of users with different rights for testing, > > something wierd happens... > > 1) sometimes, when logging in as a, the b, it offers "b" or a's > > password as password > > 2) sometimes it offers passwords as usernames > > > Is it my form which causes this, or window is just behavining weird? > > I should add, that the name of the form is alway the same, so is the > > url, and the name of the to fields are not in English, so it is not > > username/password. > > > WBR > >Sonnich > > It could be your form and the way the browser interprets the names of > the fields. > It will not be windows itself. > > Since you haven't shown us the form, nor told us which browser you are > using, we can't really be any more helpful.- Hide quoted text - The problem is in IE6 Code is <form method="post" name="dm_login1" action="xxx.php" onsubmit="if(this.submitted) return false; else { this.submitted = true; DisableSubmits(this); return true; }"> <table><tr><td><table border="0" cellpadding="0" cellspacing="2"> <tr><td valign="middle">Username: </td><td valign="middle"><input type="text" name="navn" /></td></tr> <tr><td valign="middle">Password: </td><td valign="middle"><input type="password" name="kode_ord" /></td></tr> <tr><td colspan="2" valign="middle" align="right"><input name="btn_enter" type="submit" value=" Enter " /></td></tr> </table></form> |
|
|||
|
> > > A strange thing happens.... when loggin in and out from an app that I
> > > am doing, as a number of users with different rights for testing, > > > something wierd happens... > > > It could be your form and the way the browser interprets the names of > > the fields. > > It will not be windows itself. Looks like IE is doing it elsewhere too... better reinstall or just go to linux.... |
|
|||
|
On 13 Dec, 14:40, jodleren <sonn...@hot.ee> wrote:
> > > > A strange thing happens.... when loggin in and out from an app that I > > > > am doing, as a number of users with different rights for testing, > > > > something wierd happens... > > > > It could be your form and the way the browser interprets the names of > > > the fields. > > > It will not be windows itself. > > Looks like IE is doing it elsewhere too... > > better reinstall or just go to linux.... Of FireFox |