Recent content by LiteTeBoss

  1. L

    Not symmetrical - HTML

    What I said but you know. Manager wasn't happy. changed it know
  2. L

    Not symmetrical - HTML

    Hello guys, I am trying to make a proffessional website for http://minecraft-host.com and I cannot get the features to be symmetrical with the 'Features' line. Here is my code:
  3. L

    [PHP] strings equal but not equalling?

    That is correct. I have also tried: $stmt = $db->prepare('SELECT confirmed,password FROM tbl_users WHERE email=:email'); $stmt->bindValue(':email', $email, PDO::PARAM_STR); $stmt->execute(); if($stmt->rowCount() > 0){ foreach($stmt->fetchAll(PDO::FETCH_ASSOC)...
  4. L

    [PHP] strings equal but not equalling?

    its stored in the database in as a string And what if two have the same password? Also, I tried password_hash() and didn't get on with it as it kept messing up
  5. L

    [PHP] strings equal but not equalling?

    the return is string because I was too lazy to check it on the other side to see if its a string or boolean. It always returns false and if I use the '==' it will always return true
  6. L

    [PHP] strings equal but not equalling?

    Hello there, I have this bit of PHP code which grabs a encrypted password from a DB and compares it to what is posted. This sometimes works but mostly won't. Here's the code for the script (ofcourse without database connection): $stmt = $db->prepare('SELECT confirmed,password FROM tbl_users...
  7. L

    [PHP] curl proxy returning NULL

    I looked at a stack overflow but it missed a line
  8. L

    [PHP] curl proxy returning NULL

    I have a problem with the proxy for the curl. The proxy I am using works and I have done it manually myself with the proxy but the curl request always returns NULL
Top