Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. JosiahMaybe

    iphone browsers jumbling html and css output

    I do not get exactly what error is from that, got more code we can look at? Can you post screenshots of Android and iOS?
  2. JosiahMaybe

    Navigation bar divs shrinking and scaling with changing window size.

    Judging by that, unless something overrides that should work well for links. Are you having any specific problems? X E.
  3. JosiahMaybe

    PHP How to encrypt AND decrypt passwords?

    Because I need to get those passwords back unencrypted eventually and password_hash seems to not have support for that. I would be doing like on recovery attempt email out unencrypted password. Seems like a bad idea but it reduces space needed. X E.
  4. JosiahMaybe

    PHP How to encrypt AND decrypt passwords?

    Anyway, I guess I will limit origin to 100 characters and use openssl functions, thanks. X E.
  5. JosiahMaybe

    PHP How to encrypt AND decrypt passwords?

    Yes I have to store these passwords. It would be for user defined passwords and AES-256-CBC I think is what I would be using. Just to be sure, encryption and decryption work same regardless of which certificate I have, right? Also, for that encryption I would like to know what is a sane upper...
  6. JosiahMaybe

    PHP How to encrypt AND decrypt passwords?

    Okay so I use openssl_encrypt and openssl_decrypt but that just sounds like it depends on SSL certificates and since they only last a year, how am I supposed to encrypt and decrypt passwords? I know password_hash won't work because I need to get origin again. Also, unsure what happens if I use...
  7. JosiahMaybe

    Better way to scale than vw

    That seems like it should work. Suppose there is anything overriding? I normally use px; rem; but vw (viewport width) should work. Have you set viewport width to all screen with a meta tag? X E.
  8. JosiahMaybe

    Node.JS Can't get any output from the code

    Just so we are clear what I was saying, there is a space between function and start parenthesis, change that to either no space or put a name of function. As @Johna said probably not needed though. I just know JS, not Node.js. X E.
  9. JosiahMaybe

    Hi, I am Joe!

    Wow, nice, I have just recently started using PHP and still do not know what that is. I know all but what flatfile means. Welcome Joe, funny, I could go by that. X E.
  10. JosiahMaybe

    Node.JS Can't get any output from the code

    I see one error, function (, if it were function name( or function( with no space would help. X E.
  11. JosiahMaybe

    JavaScript Ajax - how to load a website and receive data fra extern URL

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da" lang="da"> <head> <title>Read data from watermeter</title> <style> .showOnLoad { display: block; }...
  12. JosiahMaybe

    PHP Vlucas doesn't work.

    https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505 That is about all I can say. Are you on an up to date version and is your gmail configured to be used for email like that? X E.
  13. JosiahMaybe

    JavaScript Ajax - how to load a website and receive data fra extern URL

    Variables do not start with $ in JS, maybe learn some, no offense intended. Based on what I see flow is from PHP to Javascript so you will have to put it in HTML with Javascript. X E.
  14. JosiahMaybe

    JavaScript Ajax - how to load a website and receive data fra extern URL

    Try 'document.getElementById("idOfElement").innerHTML=data;' with original code. Have an element with an ID and use it in that. Do you need an exact example? Could even try 'document.body.innerHTML=data;', remove ' from what I am saying to use. X E.
  15. JosiahMaybe

    JavaScript Ajax - how to load a website and receive data fra extern URL

    Okay so what you may want to do is first check console for format and if that way is working. After that it should be in that last .then(...) so just use that variable named data in Javascript. If you are not getting your data in console that is a problem. X E.
  16. JosiahMaybe

    Bold not showing for some people

    Hey, try going to your style sheets in your browser and reloading if you can on what it is not working on. It may be a caching issue. If you cannot visit style sheets then try clearing cache. If that does not work then maybe code would help. X E.
  17. JosiahMaybe

    Integrating with paddle.com because I can't use anyone else. X E.

    Integrating with paddle.com because I can't use anyone else. X E.
  18. JosiahMaybe

    htaccess or handlers, setting a default web icon maybe

    Yeah, I was looking for a way to do like one but if that does not work do another. It looks like that is not possible. Anyway, I expect stack overflow to be with creative commons and anyway that is still one logo. I guess just having a favicon.ico is what I can do. I was trying for how text...
  19. JosiahMaybe

    htaccess or handlers, setting a default web icon maybe

    I have heard that there is some way to set a default favicon for non-HTML files maybe using .htaccess or a file handler. File (Apache) handlers are a bit out of like my league but if I could I would increase default font size also. Main thing is how to have a default favicon set. Here is a...
  20. JosiahMaybe

    Don't We Just Confuse Ourselves and Increase The Complexity Of Our Code?

    Divs do in fact affect with CSS how things appear and also what is a unit. Body tags are needed to define main part of our code. X E.
Back
Top Bottom