Re: [PHP] Your Opinion

2005-04-29 Thread Richard Lynch
On Fri, April 29, 2005 1:51 am, Sudeep Sarath said: > I'm planning to buy "PHP5 & MySQL Bible", the book > written by Tim Converse, Joyce Park & Clark Morgan. > Give me your opinion on this book, if anyone has gone > thru it. I tech-edited the first two editions, before a change in personnel at

[PHP] Your Opinion

2005-04-29 Thread Sudeep Sarath
Hi everybody, I'm planning to buy "PHP5 & MySQL Bible", the book written by Tim Converse, Joyce Park & Clark Morgan. Give me your opinion on this book, if anyone has gone thru it. Thanx. Yahoo! India Matrimony: Find you

Re: [PHP] Your Opinion

2003-12-16 Thread Gerard Samuel
On Tuesday 16 December 2003 09:33 am, Marek Kilimajer wrote: > For correct benchmarking you should run the test also when $foo == 'string' > Actually, I did, showing similar results to my first example. '; } else { echo 'false'; } } ?> -- PHP General Mailing List (http:

Re: [PHP] Your Opinion

2003-12-16 Thread Marek Kilimajer
For correct benchmarking you should run the test also when $foo == 'string' Gerard Samuel wrote: Looking to squeeze as much out of my core scripts (not that they are slow ;) ). The thought arose that I can replace simple functions like is_string(), is_array() with simpler php code. For example -

[PHP] Your Opinion

2003-12-16 Thread Gerard Samuel
Looking to squeeze as much out of my core scripts (not that they are slow ;) ). The thought arose that I can replace simple functions like is_string(), is_array() with simpler php code. For example -> '; } else { echo 'false'; } } ?> It seems to work, and debugging it via

[PHP] Your opinion on globals/reference

2002-11-03 Thread Gerard Samuel
Something I just thought of about using global in a function. Mostly I global objects in a function like -> function foo() { global $bar_object; $bar_object->do_something(); } Is it better, more effiecient, if I pass it by reference, like -> function foo(&$bar_object) { $bar_object->do_s

Re: [PHP] Your opinion on security issue: file extension

2001-05-01 Thread Yasuo Ohgaki
I think expose_php = Off is first thing to do instead of changing association. (As well as disabling server signature) extension does not tell much, but expose_php tells PHP version also, if you care about crackers. Crackers will notice you care about security somewhat. It does not protect your

Re: [PHP] Your opinion on security issue: file extension

2001-05-01 Thread Jon Rosenberg
It will tell ou everything about the server, even uptime. So, if they want to know, they can find out, file extensions just make it a bit easier... - Original Message - From: "Johnson, Kirk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 01, 2001 12

[PHP] Your opinion on security issue: file extension

2001-05-01 Thread Johnson, Kirk
I would like opinions on a security question. A co-worker suggested we rename our application files to some extension other than .php (for example, .htm). The reasoning being that the .php extension tells a cracker that we are using PHP, and not ASP, or ColdFusion, etc. The cracker can focus imme

[PHP] Your Opinion?! PHP4 coding style - Comment and Splitting source code

2001-02-13 Thread Yasuo Ohgaki
Hello all. I'm running PHP4 as Apache module under Linux. I would like to know good script coding style. I should not write long comments in code or not? With Zend Cache, comments should not matter. How about w/o Zend Cache? If I want to write long comments, should I get Zend Cache? Or can I igno