ค้นหาฝ่ายสนับสนุน

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Form <input> tags misinterpreted in firefox, not IE , Chrome

  • ยังไม่มีคำตอบ
  • 0 คนมีปัญหานี้
  • 12 ครั้งที่ดู
more options

[Yesterday 12:57 PM] Mills, Ed Our HTML for has this:

<input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'> <input type='hidden' id='fileCount' name='fileCount' value='0'>

When posted , both IE and Chrome have: $vars{dir} = 'datasets/open/2023-06-07_09:54:40' $vars{fileCount}=0

BUT, Firefox 114.0 has only this: $vars{dir} = 0

Since it appeared that firefox was somehow "merging" the two tags into one, I reversed the order to this to see if the new first var would post. But instead, now this works 100% fine: <input type='hidden' id='fileCount' name='fileCount' value='0'> <input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'>

The system is working again. chatAI suggested a few things like updating firefox (I did) , but nothing they suggested worked. Only my reversal worked.


Thoughts?

[Yesterday 12:57 PM] Mills, Ed Our HTML for has this: <input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'> <input type='hidden' id='fileCount' name='fileCount' value='0'> When posted , both IE and Chrome have: $vars{dir} = 'datasets/open/2023-06-07_09:54:40' $vars{fileCount}=0 BUT, Firefox 114.0 has only this: $vars{dir} = 0 Since it appeared that firefox was somehow "merging" the two tags into one, I reversed the order to this to see if the new first var would post. But instead, now this works 100% fine: <input type='hidden' id='fileCount' name='fileCount' value='0'> <input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'> The system is working again. chatAI suggested a few things like updating firefox (I did) , but nothing they suggested worked. Only my reversal worked. Thoughts?