Likes Received By nico_swd

  1. greatlogix liked nico_swd's post in the thread Submit Large Form Arrays Problem.

    I'm glad to hear that! Just one thing I'd like to add. This php.ini setting was not introduced to mess with you, but to protect you. It...

    May 27, 2014
  2. greatlogix liked nico_swd's post in the thread Submit Large Form Arrays Problem.

    Are you running PHP 5.3.9 (or higher)? If so, check the php.ini value for max_input_vars. There's a similar setting for suhosin, if...

    May 27, 2014
  3. malky66 liked nico_swd's post in the thread Replace URL in String.

    Not sure if it's funny or sad that people directly assume the code you post on a message board is Wordpress... When you say...

    Apr 29, 2014
  4. ryan_uk liked nico_swd's post in the thread Replace URL in String.

    Not sure if it's funny or sad that people directly assume the code you post on a message board is Wordpress... When you say...

    Apr 29, 2014
  5. deathshadow liked nico_swd's post in the thread All PHP inbuild functions.

    <?php if (!$fp = @fopen('functions.txt', 'a')) { exit('Unable to open file'); } foreach (get_defined_functions()['internal'] AS...

    Apr 28, 2014
  6. ThePHPMaster liked nico_swd's post in the thread All PHP inbuild functions.

    <?php if (!$fp = @fopen('functions.txt', 'a')) { exit('Unable to open file'); } foreach (get_defined_functions()['internal'] AS...

    Apr 27, 2014
  7. Vooler liked nico_swd's post in the thread All PHP inbuild functions.

    <?php if (!$fp = @fopen('functions.txt', 'a')) { exit('Unable to open file'); } foreach (get_defined_functions()['internal'] AS...

    Apr 27, 2014
  8. deathshadow liked nico_swd's post in the thread Please help me in Warning: Cannot modify header information.

    Please don't, it's a terrible way.

    Apr 25, 2014
  9. Vooler liked nico_swd's post in the thread Find Location For IP Address.

    http://ipinfodb.com/ip_location_api.php http://freegeoip.net/

    Jan 27, 2014
  10. heartnet02 liked nico_swd's post in the thread Auto loading classes.

    I prefer namespaces for autoloading. spl_autoload_register(function($namespace) { require str_replace('\\', DIRECTORY_SEPARATOR,...

    Jan 7, 2014
  11. ryan_uk liked nico_swd's post in the thread I need a review for my secure PHP file uploading script.

    Geez, calm down, the guy is still learning, and he's making quite a good progress. There's nothing wrong with working on small projects...

    Dec 4, 2013
  12. eritrea1 liked nico_swd's post in the thread I need a review for my secure PHP file uploading script.

    Geez, calm down, the guy is still learning, and he's making quite a good progress. There's nothing wrong with working on small projects...

    Dec 2, 2013
  13. eritrea1 liked nico_swd's post in the thread I need a review for my secure PHP file uploading script.

    It's not bulletproof. ;) Mainly because you're relying on the MIME type rather than the extension. The MIME type (if taken from the...

    Nov 30, 2013
  14. ryan_uk liked nico_swd's post in the thread I need a review for my secure PHP file uploading script.

    It's not bulletproof. ;) Mainly because you're relying on the MIME type rather than the extension. The MIME type (if taken from the...

    Nov 30, 2013
  15. ryan_uk liked nico_swd's post in the thread How to fix this Warning being shown on my website.

    HTTP_X_FORWARD_FOR is a user defined variable and needs to be sanitised. Plus, it can contain a LIST of comma separated IPs if you're...

    Nov 23, 2013
  16. ryan_uk liked nico_swd's post in the thread How to fix this Warning being shown on my website.

    You might want to add this paragraph to your signature. It's suitable in almost all topics on here. This, and the one about the giant...

    Nov 23, 2013
  17. ryan_uk liked nico_swd's post in the thread My "contact us" feature isn't contacting me :).

    Much better! ;) I'm still not sold on the loop that imports variables, though. Are the few extra keystrokes you're saving worth the...

    Nov 22, 2013
  18. ryan_uk liked nico_swd's post in the thread My "contact us" feature isn't contacting me :).

    And there you have it. A perfect example of why importing user defined variables to the local scope is a bad idea. You just made your...

    Nov 22, 2013
  19. sarahk liked nico_swd's post in the thread php form inserting drop down values to mysql database.

    <option> tags should not have a name. Plus, your <select>'s name is "contracttype" but you're trying to access it with...

    Nov 19, 2013
  20. ryan_uk liked nico_swd's post in the thread A guide to better Application Security..

    There's a library from IRCMaxell (ex PHP core developer) for PHP 5.3: https://github.com/ircmaxell/password_compat It works pretty much...

    Nov 17, 2013