Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. I know you acknowledged your response was late and you're just trying to help but please don't resurrect very old threads.
  2. This topic has been moved to PHP Math Help. http://www.phpfreaks.com/forums/index.php?topic=321684.0
  3. Nope I moved it for you. There are a few plugins I use: - MySQL Inject Me - XSS Me We also have a section for beta testing: Beta Test Your Stuff!
  4. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=321745.0
  5. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=276607.0
  6. I understand you're trying to help but please don't resurrect really old threads.
  7. EDIT: Sorry read the post wrong. EDIT2: Don't put single quotes around the image_name value in the url.
  8. Use elseif's so only 1 block will be executed.
  9. Are you kidding me? STOP changing your code! If you do it again I'm not helping you. This line is causing the error, similar to before. $add = " $email;
  10. You did change it. Remove the dot on the line I pointed out (there are two).
  11. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=321735.0
  12. Please, when we ask you to post your current code don't change it. Previously you had: $message = $comments . '; Now you have: $message = $comments . ;
  13. Did you add the error reporting lines? Post the current code. Or an extra unnecessary single quote, on two separate lines. Surprised the error reporting didn't pick that up.
  14. Did you add the error reporting lines? Post the current code.
  15. Also a tip for when you see a blank page that contains PHP, it usually is some fatal error. To temporarily turn on error reporting you can put these 2 lines directly below your opening <?php tag: ini_set ("display_errors", "1"); error_reporting(E_ALL);
  16. Your wording suggests that the errors are located in the Excel sheet, is this true? (and yes, please post the exact error messages)
  17. Eh, those are usually the hardest ones to spot
  18. Please mark this as solved and create a new thread. It will allow for more people to help you.
  19. No problem If this is resolved please mark as solved, if you need more help just ask or if you have a different question, make a new thread.
  20. AFAIK, there is nothing in the php.ini that would prevent replacing single quotes, but maybe there is. Can we see an exact sample text that you're passing in?
  21. It works for me. You do you know that the entity ´ is ´ when parsed by the browser? Run the script in CLI, you'll see the actual entity. If that doesn't work we need to see more of your script. Here is what I did: ini_set ("display_errors", "1"); error_reporting(E_ALL); $text = "asdfasdf'asdf"; $replace = str_replace ("'", "´", $text); echo $replace; ?> CLI: asdfasdf´asdf Web: asdfasdf´asdf
  22. I'm not sure why running this would have an effect on why you can't login but you should have a backtic here instead of a single quote: 'ferentus_text`
  23. You're using an comparison (==) rather than assignment (=).
  24. Output your query to see what it actually is. It doesn't find a result, does anything actually happen?
  25. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=321648.0
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.