RE: [PHP] Re: PHP Frameworks - Opinion

2006-08-03 Thread Kilbride, James P.
-Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 1:43 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: PHP Frameworks - Opinion Hello, on 08/03/2006 09:25 AM Paul Scott said the following: The main thing in Manual's

RE: [PHP] Re: PHP Frameworks - Opinion

2006-08-02 Thread Kilbride, James P.
I'm not going to comment on the rest of the stuff that was said, which is why I snipped it. I'm not a purist when it comes to OO at all. But I do have to say that while iterators in ruby are amazingly powerful that leave me going wow.. that is so cool.. The thought of how they could be abused and

RE: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Kilbride, James P.
I like what I've been seeing from Solar at solarphp.com. And Paul Jones, the maintainer, is extremely active on the project and the community seems to be very much in love with the framework. Community is a little small but going pretty strong. James Kilbride -Original Message- From:

RE: [PHP] AES client side

2006-07-31 Thread Kilbride, James P.
-Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 10:38 AM To: Jon Anderson; [php] PHP General List Subject: RE: [PHP] AES client side [snip] Why *must* you use SSL? Again, devil's advocate here (SSL is probably much better) but

RE: [PHP] database connections

2006-07-24 Thread Kilbride, James P.
While that kind of query structure can be a huge issue the biggest problem, and performance penalty, occurs if the programmer is opening and closing actual real connections. A good structure would use a singleton connection that is opened only the first time it is called and the rest of the time

RE: [PHP] headers and newline at end of script

2006-07-20 Thread Kilbride, James P.
I'd explain but it'd be too much work. James Kilbride -Original Message- From: Martin Marques [mailto:[EMAIL PROTECTED] Sent: Thursday, July 20, 2006 2:32 PM To: John Nichel Cc: php-general@lists.php.net Subject: Re: [PHP] headers and newline at end of script On Thu, 20 Jul

RE: [PHP] headers and newline at end of script

2006-07-20 Thread Kilbride, James P.
He never said he didn't want you to do his coding, simply that you were a slacker. Considering he's self proclaimed 'lazy' just means the two of you should get on great and you'll probably understand his code better. James Kilbride SNIPPAGE(Jochem Maas wrote:) no chance of me getting that

RE: [PHP] OO purism sucks - sell me on PHP5?

2006-06-02 Thread Kilbride, James P.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Friday, June 02, 2006 3:11 PM To: Rasmus Lerdorf; tedd Cc: php-general@lists.php.net Subject: Re: [PHP] OO purism sucks - sell me on PHP5? SNIP So for now, I'll stay with my tried and true box-step and try not

RE: [PHP] Random Images with no duplicates?

2005-12-16 Thread Kilbride, James
Actually with this idea all you do is reduce $max after each successful pull and 'increment' over pictures you already have. That way you never have to pull another random number. You just may have to increment through the entire set of pulled images if you pulled a high enough number. for($i =

RE: [PHP] PHP/MySQL noob rides again.. into trouble

2005-12-16 Thread Kilbride, James
periods are used to do string concatenation. So if you want to break a statement up you can do: $string = First part. . And this is the second part; I often do it when inserting variables: $sql = select * from The_Other_Guy; if(case 1) { $sql .= where The_Other_Guy.Is = .$something; }

RE: [PHP] Re: Declaring arrays? Good practice?

2005-12-14 Thread Kilbride, James
?php $old_array= array('one','two','three','four'); $new_array= array(); foreach($old_array as $value){ $new_array= $value; } echo $new_array; ? The result of the echo is four. Doing the same above with the [] after new_array returns the right result, a new array.(outputs Array). So

[PHP] PHP on Mobile Devices(Pocket PC specifically)

2005-11-30 Thread Kilbride, James
Does anybody know of a way to run PHP files on a windows mobile device(Pocket PC 2003)? Optimally I'd like to run it under a web server running on the mobile device itself but barring that I'll take some form of command line I guess. Realize that the mobile device will NOT be running any active

RE: [PHP] PHP on Mobile Devices(Pocket PC specifically)

2005-11-30 Thread Kilbride, James
entry) James Kilbride -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 30, 2005 10:31 AM To: php-general@lists.php.net Subject: Re: [PHP] PHP on Mobile Devices(Pocket PC specifically) On Wednesday 30 November 2005 22:48, Kilbride, James

[PHP] OCI8

2005-10-28 Thread Kilbride, James
I'm running php5.0.5 and I'm trying to get connected to an oracle server. Pear's DB requires the PHP OCI8 extension. The php website doesn't give 'installation' instructions for getting php_oci8.dll which seems to be required in order to connect to an Oracle server. I've got the oracle instant

RE: [PHP] looking for code to delete from lists..

2005-10-11 Thread Kilbride, James
Multiple Select form element, submit button. On submit iterate through the submitted sequence to delete from the database(or use a delete from statement that has the list of items depending on other work you want to do on the list before deletion). HTML_QuickForm gives you an easy way to generate

RE: [PHP] Help with logic :(

2005-10-11 Thread Kilbride, James
Did you remember to open the database connection? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 1:34 PM To: Dan McCullough Cc: php-general@lists.php.net Subject: Re: [PHP] Help with logic :( ?php include

RE: [PHP] Obsession with BC

2005-10-11 Thread Kilbride, James
4 to 5 does break a lot of code. On the other hand I agree it's a cop out. On the final hand, if you pass the pages off from apache to a php exe or module.. How does Apache know which one to pass it to? Php4 or Php5? If I have both php4 and php5 code in a page should i run both sections or only

RE: [PHP] Obsession with BC

2005-10-11 Thread Kilbride, James
with, because in the end it will be a coding issue and most of the people out there wont realize it and get mad and leave. On 10/11/05, Kilbride, James [EMAIL PROTECTED] wrote: 4 to 5 does break a lot of code. On the other hand I agree it's a cop out. On the final hand, if you pass

RE: [PHP] Obsession with BC

2005-10-11 Thread Kilbride, James
Perhaps I'm missing something but doesn't Apache hand off to PHP before it looks at anything inside the file? Doesn't it hand it off at the fact that the target is SomeFile.php. So the tag ?php4/5/6/X doesn't mean anything since by the time the tag gets read it's already in PHP4 or 5 or 6. So the

[PHP] Pocket PC(Mobile 2003 particularly)

2005-10-10 Thread Kilbride, James
I am looking for a build of apache(or any http server) with PHP5 that works for Pocket PC's. Specifically Windows Mobile. Can anybody point me in a good direction to head in my search? I'm working here with the PHP list because quite frankly PHP is the critical part of this in my mind. Thanks.

RE: [PHP] Pocket PC(Mobile 2003 particularly)

2005-10-10 Thread Kilbride, James
-Original Message- From: Jim Moseby [mailto:[EMAIL PROTECTED] Sent: Monday, October 10, 2005 2:42 PM To: Kilbride, James Cc: php-general@lists.php.net Subject: RE: [PHP] Pocket PC(Mobile 2003 particularly) SNIPPED... The first. As to why? I have web applications that currently