Jump to content

Ingolme

Moderator
  • Posts

    14,894
  • Joined

  • Last visited

  • Days Won

    176

Everything posted by Ingolme

  1. There seems to be an issue with the site. They might respond faster if you send an email to help@w3schools.com
  2. Ingolme

    PHP Tryit Editor

    I just had a bit of time and checked. There certainly does seem to be a problem. The problem is not on your computer, it's the server that has a problem. When the manual is talking about the operating system, it is referring to the server's operating system, not your computer's operating system.
  3. Ingolme

    PHP Tryit Editor

    Which tryit example are you referring to? By Tryit editor, I assume you're referring to something like this: https://www.w3schools.com/php/phptryit.asp?filename=tryphp_func_string_strlen
  4. Are you able to use the DOM inspector to see which styles are being applied? Edit: Considering Safari is the one with the problem, have you cleared the browser's cache? I am aware that Safari has a very aggressive cache.
  5. This should work: display: block; max-width: 100vw; max-height: 100vh; width: auto; height: auto; The element containing the image should take up the full size of the window for this to work correctly.
  6. The == was probably checking that both strings were pointing to the same space in memory, which they probably were not.
  7. See if shouldLoginNo.trim().equals("Yes") makes a difference.
  8. Ingolme

    Rob

    XSLT can only deal with valid XML. If you have another programming language available to you, you could have it replace the entities before sending the XML to the XSLT engine.
  9. There may be invisible characters. What number do you get when you call shouldLoginNo.length() ?
  10. Ingolme

    Rob

    I tried to test this in the browser but it rejected the XML because of undefined entities. Which XSLT engine are you using? It looks like your XSLT engine is allowing it to run but stripping out entities that it does not understand.
  11. Can you show the full code including the section where the data is retrieved from the spreadsheet?
  12. Print the variable to see if it contains the value you expected it to have. System.out.println("*" + shouldLoginNo + "*");
  13. Ingolme

    Rob

    Did you try changing the value of "disable-output-escaping"?
  14. What data type is that variable? Where did it come from?
  15. I would start by printing the return value of shouldLoginNo.trim(). It clearly is not equal to "Yes".
  16. Ingolme

    Rob

    In XML, those would be considered invalid entities, though it is valid if the document is HTML. You can escape them by turning every & into &amp; <pronounce>&amp;abreve;-b&amp;umacr;s&amp;prime; d&amp;emacr;-t&amp;ebreve;ramp;&prime;&amp;ebreve;nt</pronounce> Doing this straight through XSLT, I'm not certain, but you might want to set disable-output-escaping to "no" so that it will escape the characters.
  17. What does your code look like? Maybe you forgot to replace the comma on the previous line with a semi-colon. If that's not the issue, then it sounds like all of the other font files are missing from your server or are corrupted.
  18. You might need to upgrade your version of Edge. The <details> tag is not supported in versions prior to 79.
  19. You could give the body an overflow: scroll property to always have a scrollbar there.
  20. I don't see any menus or dropdowns in the file you have attached. Clicking on the words just reloads the page. I would guess that the menu is causing a scrollbar to appear, so the page has to move to the left to accommodate for it.
  21. I've never seen anything like this before. What happens if you remove the SVG line from the font definition?
  22. You can use indexOf() to see if the search term can be found in each item in the array.
  23. That is not very descriptive. What code have you written and what exactly is it meant to do?
  24. This code needs to run on a web server. If you open this from your local filesystem, the request to load the content will be blocked by the browser's security features. If you are running this on a web server, make sure that the file header.html is in the same folder as the file that is including it.
×
×
  • Create New...