[PHP] Re: It's Sunday, and I'm bored...

2008-11-09 Thread Colin Guthrie
Jochem Maas wrote: you're not 'loose' the asylum is just bigger than you realise ... most people know it by it's other name ... Earth. Yeah the "outside" of the Asylum is pretty small... if you don't believe me, ask Wonko the Sane... So long :

[PHP] Re: PHP / Procmail / MIME decoder, Imagemagick, MySQL, PDF fax management system

2008-11-10 Thread Colin Guthrie
said, the PEAR MimeDecode classes do a fair job of this. Col -- Colin Guthrie gmane(at)colin.guthr.ie http://colin.guthr.ie/ Day Job: Tribalogic Limited [http://www.tribalogic.net/] Open Source: Mandriva Linux Contributor [http://www.mandriva.com/] PulseAudio Hacker [http://www.pulseaudio.org/

[PHP] Re: Memcached as Session Handler

2008-11-10 Thread Colin Guthrie
tainly can help in some circumstances. If you want to expand to a dual server with round-robin DNS load balancing, then memcache will defo help. No idea about benchmarks and performance vs files tho' so can't really help with that! Col -- Colin Guthrie gmane(at)colin.guthr.ie h

Re: [PHP] php - jscript - onclick event..

2005-06-22 Thread Colin Ross
First of all, I _think_ this is more of a javascript/jscript question than a php one. Are you just trying to make a javascript call from php onload? If so, i'm pretty sure you can use window.onLoad in a script block in the head. Also, be sure to set your scripting type in the onclick. i.e. onc

Re: [PHP] Stop spreading PEAR FUD; WAS Re: [PHP] Re: PHP web archeticture

2005-06-25 Thread Colin Ross
I don't think a lot of people think tat PEAR sucks, we are all, as a community, just looking for ways to make it better. C On 6/25/05, Chris Shiflett <[EMAIL PROTECTED]> wrote: > > Matthew Weier O'Phinney wrote: > > The perl culture is one that includes testing and documentation as > > the norm

Re: [PHP] Re: x years old

2005-07-02 Thread Colin Ross
and for completeness of the topic, ceil() will round fractions up. i.e. ceil(16.1) = 17 ceil(16.0) = 16 I think the Credit Card Industry using ceil() alot ;P On 7/2/05, Jasper Bryant-Greene <[EMAIL PROTECTED]> wrote: > > Ryan A wrote: > > Hey guys, > > This is the code I am using to

Re: [PHP] private properties problem

2005-10-21 Thread Colin Shreffler
ent class, it is not there. > > I think PHP should notify of the problem but it is not doing so. I have > my error reporting level on E_ALL. > > Any ideas? > > Pablo Godel > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://w

[PHP] Calling PostgreSQL & MySQL Stored Procedures

2005-10-22 Thread Colin Shreffler
Can any one please tell me how you call a stored procedure in either PostgreSQL or MySQL from php? Cheers -c

Re: [PHP] Calling PostgreSQL & MySQL Stored Procedures

2005-10-22 Thread Colin Shreffler
One more caveat: With an without parameters would be very helpful. -c On 10/22/05 11:55 AM, "Colin Shreffler" <[EMAIL PROTECTED]> wrote: > Can any one please tell me how you call a stored procedure in either > PostgreSQL or MySQL from php? > > Cheers >

Re: [PHP] Abstract Classes?

2005-10-23 Thread Colin Shreffler
help? If not, let me know and I'll come up with a similar/real-world example. Colin On 10/23/05 4:40 AM, "Alan Lord" <[EMAIL PROTECTED]> wrote: > Thanks Jasper, > > That makes sense. > > But what benefit is there is having it as an explicitly "ab

RE: [PHP] Abstract Classes?

2005-10-23 Thread Colin Shreffler
s abstract and defining the abstract function start() in it (because 'Vehicle' itself would not have an implementation for start()), you guarantee that each derived class MUST provide its own unique implementation for that function. Colin -Original Message- From: Richard Lynch [mai

Re: [PHP] Why this doesn't work ?

2005-10-24 Thread Colin Shreffler
ito > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > Thank you, Colin Shreffler Principal 303.349.9010 - cell 928.396.1099 - fax [EMAIL PROTECTED] Warp 9 Software, LLC. 6791 Halifax Avenue Castle Rock, CO 80104

Re: [PHP] Calling PostgreSQL & MySQL Stored Procedures - SOLVED

2005-10-24 Thread Colin Shreffler
After further investigation I found that using the 'mysqli' object and corresponding extension library will allow you to execute MySQL stored procedures from PHP. documentation can be found at: http://www.php.net/manual/en/ref.mysqli.php cheers -c > On Sat, October 22, 2005 12

[PHP] Local PEAR install confusion

2005-11-20 Thread Colin Andrews
about 3 months ago I set up a local install of pear on my web host account (a cpanel system). A couple days ago, my hosting company upgraded us to php 4.4.2-dev. I started seeing a lot of warnings coming out my PEAR includes: "Notice: Only variable references should be returned by reference in /ho

[PHP] Re: Local PEAR install confusion

2005-11-20 Thread Colin Andrews
Thanks a ton- So then that means that the only way to get rid of the warnings is to change the error reporting level? Quoting Greg Beaver <[EMAIL PROTECTED]>: Colin Andrews wrote: about 3 months ago I set up a local install of pear on my web host account (a ... Any sugge

Re: [PHP] Web Service Php - Currency Conversion

2005-11-27 Thread Colin Ross
New version released that fixed the bug, fyi On 9/28/05, Thomas <[EMAIL PROTECTED]> wrote: > > I have used nusoap and a xmethods service. You can get the ziped files > here: > http://www.thomash.co.za/uploads/forex/forex.nusoap.zip > > Hope that helps > > BTW: also had issues with the PEAR package

Re: [PHP] any https / php gotchas ???

2005-12-30 Thread Colin Ross
this all depends on the web server (IIS/Apache) being used... On 12/26/05, Curt Zirzow <[EMAIL PROTECTED]> wrote: > > On Mon, Dec 26, 2005 at 07:42:48AM +, Dave Carrera wrote: > > Hi List, > > > > Are there any https / php gotchas to take into consideration for an app > > i am writing that wil

[PHP] Help with mysql_query and INSERT INTO

2006-02-05 Thread Colin Davis
, mysql_query() returns a resource on success, or FALSE on error. For other type of SQL statements, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error. Regards Colin Davis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help with mysql_query and INSERT INTO

2006-02-05 Thread Colin Davis
Thank you, that is perfect. Regards Colin Davis http://www.ukpages.org "Johan Martin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > http://www.php.net/manual/en/function.mysql-insert-id.php > This will give you the record id of the last record inserted (

[PHP-CVS] CVS is down?

2001-01-30 Thread Colin Viebrock
Can't seem to update ... - Colin -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-CVS] cvs: php4 / php.ini-dist

2001-02-01 Thread Colin Viebrock
cmv Thu Feb 1 07:41:04 2001 EDT Modified files: /php4 php.ini-dist Log: While we're fixing the ini files, change these to web-safe colours ... this always bugged me :) Index: php4/php.ini-dist diff -u php4/php.ini-dist:1.67 php4/php.ini-dist

[PHP-CVS] cvs: php4 /pear PEAR.php.in

2001-02-01 Thread Colin Viebrock
cmv Thu Feb 1 12:15:09 2001 EDT Modified files: /php4/pear PEAR.php.in Log: trigger_error() should be ($msg,$level), no? Index: php4/pear/PEAR.php.in diff -u php4/pear/PEAR.php.in:1.13 php4/pear/PEAR.php.in:1.14 --- php4/pear/PEAR.php.in:1.13 Tue J

[PHP-CVS] cvs: php4 /pear/DB common.php

2001-02-01 Thread Colin Viebrock
cmv Thu Feb 1 12:16:53 2001 EDT Modified files: /php4/pear/DB common.php Log: fix here too Index: php4/pear/DB/common.php diff -u php4/pear/DB/common.php:1.35 php4/pear/DB/common.php:1.36 --- php4/pear/DB/common.php:1.35Tue Jan 9 17:01:53

[PHP-CVS] cvs: php4 /pear DB.php

2001-02-02 Thread Colin Viebrock
cmv Fri Feb 2 09:59:31 2001 EDT Modified files: /php4/pear DB.php Log: I think this should've been changed as well, right? Index: php4/pear/DB.php diff -u php4/pear/DB.php:1.46 php4/pear/DB.php:1.47 --- php4/pear/DB.php:1.46 Thu Feb 1 21:24:3

[PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-02-02 Thread Colin Viebrock
cmv Fri Feb 2 12:55:27 2001 EDT Modified files: /php4/ext/sockets sockets.c Log: Fix for http://bugs.php.net/bugs.php?id=9082 I know switch() is expensive, so someone rewrite this "properly" if you want. Index: php4/ext/sockets/sockets.c dif

RE: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-02-02 Thread Colin Viebrock
> What do you mean, switch() is expensive? Well, isn't it slower? > Uh-uh - can't do that. What is your goal here, if port is not passed, it > defaults to 0? The goal is to make getpeername() not seg-fault and core dump when I only call it with 2 args. :) - Colin -- P

RE: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-02-02 Thread Colin Viebrock
on with: I guess it doesn't matter what the port *is* ... it just won't return it. Maybe just put if statements around any of the code that references port? - Colin -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-02-02 Thread Colin Viebrock
> Ok, I fixed it. Thanks ... although "bogus patch" is kinda harsh, don't you think? :) - Colin -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrato

[PHP-CVS] cvs: php4 /pear/Crypt CBC.php

2001-02-02 Thread Colin Viebrock
/Crypt/CBC.php Fri Feb 2 13:52:21 2001 @@ -36,7 +36,7 @@ * the author of libcrypt decides to name things internally. * * -* @version $Id: CBC.php,v 1.4 2001/01/23 21:36:12 cmv Exp $ +* @version $Id: CBC.php,v 1.5 2001/02/02 21:52:21 cmv Exp $ * @author Colin Viebrock <[EMAIL PROTEC

RE: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-02-02 Thread Colin Viebrock
closed, telling the submitter to upgrade and resubmit if their problem persists. I am willing to do this if people are too busy with other stuff. But I'm hoping that someone (or a few people) could start looking through the open reports and (at least) closing the bogus or fixed ones. - Col

Re: [PHP-CVS] cvs: php4 /ext/standard file.c file.h

2001-02-11 Thread Colin Viebrock
if ($t && $n && $c) { $result[] = array( 'type' => $t, 'meta_name' => $n, 'meta_content' => $c ); } } } return $result; } } ?> - Colin -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-CVS] cvs: php4 /pear/Crypt CBC.php

2001-02-13 Thread Colin Viebrock
2001 +++ php4/pear/Crypt/CBC.php Tue Feb 13 13:53:48 2001 @@ -36,7 +36,7 @@ * the author of libcrypt decides to name things internally. * * -* @version $Id: CBC.php,v 1.5 2001/02/02 21:52:21 cmv Exp $ +* @version $Id: CBC.php,v 1.6 2001/02/13 21:53:48 cmv Exp $ * @author Colin Viebrock

<    2   3   4   5   6   7