Forum: PHP Oct 5th, 2007 |
| Replies: 1 Views: 1,107 Well, according to this http://hudzilla.org/phpwiki/index.php?title=Avoid_overusing_function_calls it is, and zend.com has the following to say on it in this page about optimizing php... |
Forum: PHP Sep 13th, 2007 |
| Replies: 3 Views: 896 Session ID should be a unique hash for every session. If that is stored as a cookie with no expiration on the visitors machine it should suffice.
(demanding "Solve it!" is just plain rude as well... |
Forum: PHP Aug 29th, 2007 |
| Replies: 2 Views: 927 reCAPTCHA works well for us and was extremely easy to integrate
http://recaptcha.net/ |
Forum: PHP Aug 3rd, 2007 |
| Replies: 7 Views: 2,096 If you are using Apache then .htaccess will allow you to control that. Here are a couple of tutorials:
http://httpd.apache.org/docs/1.3/howto/htaccess.html
... |
Forum: PHP Jul 20th, 2007 |
| Replies: 16 Views: 8,063 Glad to hear it. Things like that can be very confusing with differences in runtime settings.
With register_globals turned on, all variables from GET and POST are automatically available as a... |