Was there a case in any server-side language where a code did not work in a browser while it did work in the rest?
I am asking this because I can’t imagine such a scenario because server-side code runs in the server, not in the browser but I have seen discussions where, as said, there were “server-side browser compatibility issues”. I can’t seem to recall where I have read it.
Thanks in advance 🙂
code that runs on the server only needs to be compatible with that server’s environment. if say you have server code that generates javascript, however, that may not work in one or more browsers since an incompatibility may exist in the javascript code but other than that there’s no reason IE would run some generic PHP or Ruby code differently than firefox or whatever.