Page 1 of 1
peculiar mysql/php behavior..
Posted: Tue Aug 08, 2006 9:41 pm
by Charles256
code..
Code: Select all
<?php echo $row1->email; ?><input name="email" value="<?php echo $row1->email;?>" />
output
Code: Select all
test@gmail.com<input name="email" value="test@gmail.com" />
looks right? don't it? how come when i actually view the page i see
test1@gmail.com ? the old email? i've done a hard refresh of the page.
Posted: Tue Aug 08, 2006 9:55 pm
by RobertGonzalez
You see the 'odd' email address in both places or just one?
Posted: Tue Aug 08, 2006 9:58 pm
by Charles256
the actual display shows me
test@gmail.com and in the input field
test1@gmail.com i tested in I.E. and this appears to be a mozilla issue only.and for the record i cleared all caches of everything.twice.
Posted: Tue Aug 08, 2006 10:25 pm
by RobertGonzalez
Do you have any autocomplete form field features set up in your browser? I know some tool bar extensions will automagically load some information into form fields that you may use frequently.
Posted: Tue Aug 08, 2006 10:28 pm
by Luke
yup, mine did that yesterday (and I was actually having this same problem - and it was driving me insane) until I cleared the saved password in options
EDIT: after reading that I realize it wasn't the same problem

(password != email)
Posted: Tue Aug 08, 2006 10:35 pm
by RobertGonzalez
My google toolbar for IE does that to me. It fills in my login names and passwords on some sites. It is rather annoying, until I remind myself that I use IE for local CSS testing only. Then I don't feel so foobarred.
Posted: Tue Aug 08, 2006 10:38 pm
by Charles256
maybe it is a login thing..probably is..bah : destroys firefox :
Posted: Tue Aug 08, 2006 10:43 pm
by RobertGonzalez
Charles, to verify this thought, load the page again, then look at the source. If the odd email is in the source, then there is a code issue. If it is not in the source, but it still shows in the browser, then it is a browser thing.