Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Looks to me like mod_rewrite isn't working.
  2. Looks fine.
  3. Your missing the closing ); $(document).ready(function(){ $('span.close').click(function() { $(this).parent().fadeOut(400); }); });
  4. You should remove the onClick from your markup and leave the binding to jQuery.
  5. You must have missed this: http://www.phpfreaks.com/forums/index.php?topic=37442.0
  6. Many thanks. So you would create a class for each table (a model) and place in there, not only the data access code, but also as much of the validation that relates to the table as possible? S Precisely. The Model should be kind of like a gatekeeper of your data. It makes sense that it would be the place to store your validation is this then ensures that the same rules are applied everywhere within your application.
  7. It is generally considered best practice to have fat Models, and thin controllers. The more you can move into a Model the better as this means it can be used easily in different locations.
  8. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=342583.0
  9. This board is for help with code, were not exactly here to handout code.
  10. It should be pretty well explained in the manual. http://php.net/manual/en/book.geoip.php
  11. That would be correct. Have you done any Googling?
  12. This topic has been moved to Other RDBMS and SQL dialects. http://www.phpfreaks.com/forums/index.php?topic=342552.0
  13. This topic has been moved to Apache HTTP Server. http://www.phpfreaks.com/forums/index.php?topic=342523.0
  14. What exactly are you planning on doing with this 30,000 rows of data? Surely your not going to try and display it?
  15. You cannot write using simple http. You would need to setup webdav. otherwise, your going to need to look down the path of other protocols. ftp, ssh etc etc. Depending on what it is your doing, it might be better to provide an API the client can send data to.
  16. If your only hosting the single site there is nothing special you need to do. Multiple sites (domains) would required there own virtual hosts in Apache.
  17. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=342394.0
  18. Hmmm, I smell spam.
  19. There is no definitive answer, just opinion. Often the one that is well suited to your style of development and specific project requirements will be the best one to use.
  20. I used to use dynamically loading js, but it ended up being allot more efficient to put all js into one file and the minify it. Its the actual http requests to multiple files that hurts more than size. Of course it would also depend on what sizes where talking about. Loading a 50k-80k file just to use one function etc etc.
  21. Have you checked out some of the editors mentioned in this thread?
  22. This board is here for questions directly relating to already existing Third Party code. It is NOT a code repository or the place to post requests looking for specific scripts. If you can't find the script you are looking for on Google, you either don't know how to use Google or the specific script does not exist. DO NOT request help with searching.
  23. I'm not sure how that would be achieved through php. The rule is that you use a before words that start with a consonant sound and an before words that start with a vowel sound.
  24. You'll need to be more descriptive. Your example makes little sense to me.
  25. Netbeans 6.8 does seem even better than 6.7. Many improvement + it does seem more responsive.
×
×
  • 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.