RE: [PHP] How can i help

2007-05-21 Thread Ligaya A. Turmelle
There are a number of ways to help depending upon what you want to do. Any help is always appreciated. An incomplete listing - http://www.khankennels.com/blog/index.php/archives/2006/08/10/25-ways-to -help-out-php/ Lig -Original Message- From: James Savage [mailto:[EMAIL PROTECTED] Sen

RE: [PHP] PDO mssql + multiple rowsets

2007-03-28 Thread Ligaya A. Turmelle
I too have been having problems getting the PDO dblib for mssql to play well (getting the same error actually). If you find a reason or work around for it I would appreciate hearing about it. Thinking of going the odbc route myself if I can't get it to work. Respectfully, Ligaya Turmelle -

RE: [PHP] anyone know a good book that ...

2007-02-12 Thread Ligaya A. Turmelle
http://www.amazon.com/Scalable-Internet-Architectures-Developers-Library /dp/067232699X Respectfully, Ligaya Turmelle Systems Analyst Guamcell Communications Phone: (671)689-2377 -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Saturday, February 10, 2007 5:22 AM To:

RE: [PHP] PHP5 & Commercial Development

2007-02-06 Thread Ligaya A. Turmelle
Law of mass tonnage - better to be in the big motorized vehicle then the little one when *crunch* happens. Respectfully, Ligaya Turmelle Systems Analyst Guamcell Communications Phone: (671)689-2377 -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 06, 2007 2

RE: [PHP] Sending secure mail

2007-02-04 Thread Ligaya A. Turmelle
IIRC the PEAR::Mail_Mime class also can handle it Respectfully, Ligaya Turmelle Systems Analyst Guamcell Communications Phone: (671)689-2377 -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Monday, February 05, 2007 10:23 AM To: php-general@lists.php.net Subject: [PHP] Sendi

RE: [PHP] PHP5 & Commercial Development

2007-02-01 Thread Ligaya A. Turmelle
AFAIK php5 is the preferred production/enterprise environment. (buzzword +1) Respectfully, Ligaya Turmelle -Original Message- From: Eric Gorr [mailto:[EMAIL PROTECTED] Sent: Friday, February 02, 2007 9:13 AM To: php-general@lists.php.net Subject: [PHP] PHP5 & Commercial Development I ha

RE: [PHP] What search algorithm does in_array() use?

2007-01-30 Thread Ligaya A. Turmelle
Don't use a theta join - use a left, right or inner preferably with ANSI syntax and make sure you indexes are set up correctly - this shouldn't take very long to execute at all. SELECT d.account FROM data d INNER JOIN accesslist a USING account (or ON d.account=a.account) WHERE a.username

RE: [PHP] Multi lingual pages

2007-01-24 Thread Ligaya A. Turmelle
This article was released just a couple days ago - http://www-128.ibm.com/developerworks/library/os-php-intl/index.html Respectfully, Ligaya Turmelle Systems Analyst Guamcell Communications Phone: (671)689-2377 -Original Message- From: Otto Wyss [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: [PHP] OT - Leaving

2007-01-23 Thread Ligaya A. Turmelle
So many old faces leaving... Feels odd Respectfully, Ligaya Turmelle Systems Analyst Guamcell Communications Phone: (671)689-2377 -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 24, 2007 5:45 AM To: PHP Mailing Lists Subject: [PHP] OT - Leaving H

RE: [PHP] having trouble with is_file() and is_dir() on 5.1.2

2007-01-22 Thread Ligaya A. Turmelle
Haven't really looked at it - but elseif is one word - or do you mean else then an if... Respectfully, Ligaya Turmelle -Original Message- From: jekillen [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 4:03 PM To: PHP General List Subject: [PHP] having trouble with is_file() and

RE: [PHP] What makes a PHP expert

2007-01-18 Thread Ligaya A. Turmelle
Other reading - http://phpthinktank.com/archives/47-What-Makes-An-Expert.html Respectfully, Ligaya Turmelle -Original Message- From: h [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 11:27 PM To: php-general@lists.php.net Subject: [PHP] What makes a PHP expert Dear All I

RE: [PHP] Stored Procedure returns nothing on ROLLBACK

2007-01-14 Thread Ligaya A. Turmelle
Have you tried it with PDO? Respectfully, Ligaya Turmelle -Original Message- From: Philip Thompson [mailto:[EMAIL PROTECTED] Sent: Saturday, January 13, 2007 1:36 AM To: php General List Subject: Re: [PHP] Stored Procedure returns nothing on ROLLBACK On Jan 11, 2007, at 5:53 PM, Chris

RE: [PHP] How to suppress error messages when using 'new mysqli(...)'

2007-01-07 Thread Ligaya A. Turmelle
Well - first I would turn off display errors and turn on log errors. Then - well there is always the error suppressor (@) - but I personally don't like it. You could also create a custom error handler... And I wonder if mysqli supports exceptions... http://www.php.net/manual/en/ref.errorfunc.php

RE: [PHP] I need help with PHP, cURL, and POST

2007-01-02 Thread Ligaya A. Turmelle
Have you looked at this tutorial - http://devzone.zend.com/node/view/id/1081 It has an example specifically for how to use curl with POST Respectfully, Ligaya Turmelle -Original Message- From: Charley [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 1:24 AM To: php-general@li

RE: [PHP] server side security

2006-11-13 Thread Ligaya A. Turmelle
Have you thought not having it available on the open web? Put it behind a firewall and make it so only local ips on the LAN can access it with strong passwords. MySQL - make sure you change the default root user password to something "hard" - and create only users with the minimum permissions ne

RE: [PHP] Best open source project/framework to support a php training course?

2006-09-27 Thread Ligaya A. Turmelle
There are a number of frameworks that you can use from PEAR (though many argue over whether it is a framework), Solar, CakePHP, Symfony, Zend's, and many many more. As for most OS projects - I don't know of a particular project that uses a particular framework (someone feel free to tell me otherwi