Re: [PHP] & and && and weird results

2009-04-01 Thread Chris
Thanks for that. I understand. Somehow, I had tried OR at one point but I got one of those orange boxes probably for some other error and in the confusion of my neurons I overlooked it. However, I am puzzled that using & (not &&) did give a lot of results, almost the whole db which is thankfully

Re: [PHP] & and && and weird results

2009-04-01 Thread PJ
Lex Braun wrote: > PJ, > > On Wed, Apr 1, 2009 at 1:40 PM, PJ > wrote: > > SELECT * FROM book >WHERE id IN (SELECT bookID >FROM book_author WHERE authID IN (SELECT author.id > >FROM author WHERE LEFT(las

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
now that.. was funny actually laughed out loud! -Original Message- From: George Larson [mailto:george.g.lar...@gmail.com] Sent: Wednesday, April 01, 2009 12:08 PM To: Robert Cummings Cc: bruce; haliphax; php-general@lists.php.net Subject: Re: [PHP] Workflow app for software Ple

RE: [PHP] Workflow app for software

2009-04-01 Thread HallMarc Websites
t;> http://us3.php.net/reST/php > | > >> -src/README.MAILINGLIST_RULES > | > > > | > > "It has been written" and "it > |

Re: [PHP] extention question

2009-04-01 Thread Michael A. Peters
Per Jessen wrote: MikeP wrote: Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. To see if it has already been compiled, check /usr/lib/phpx/extensions /Per I don't believe that is the right path on rhel - it certainly isn't on cent

Re: [PHP] Workflow app for software

2009-04-01 Thread George Larson
Please quit side-posting. Thanks. On Wed, Apr 1, 2009 at 2:58 PM, Robert Cummings wrote: > I for one don't find you very | On Wed, 2009-04-01 at 11:46 -0700, > funny Bruce. It's common knowledge | bruce wrote: so haliphax... > that it's very difficult to follow | > > side posts. If not alre

Re: [PHP] extention question

2009-04-01 Thread Michael A. Peters
MikeP wrote: Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. I am using RedHat Linux . Thanks Mike I assume by Red Hat you mean RHEL ?? I believe domxml is part of the php-xml package yum install php-xml then /etc/init.d/httpd res

Re: [PHP] extention question

2009-04-01 Thread Per Jessen
MikeP wrote: > Hello, > How do I know if an extension (specifically php-domxml) has to be > compiled or can just be loaded. To see if it has already been compiled, check /usr/lib/phpx/extensions /Per -- Per Jessen, Zürich (6.8°C) -- PHP General Mailing List (http://www.php.net/) To unsubscr

RE: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
I for one don't find you very | On Wed, 2009-04-01 at 11:46 -0700, funny Bruce. It's common knowledge | bruce wrote: so haliphax... that it's very difficult to follow | > side posts. If not already, then | > since you seem to be the primary they should certainly be | > person with

[PHP] extention question

2009-04-01 Thread MikeP
Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. I am using RedHat Linux . Thanks Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Workflow app for software

2009-04-01 Thread listmail
On Wed, 1 Apr 2009 11:46:20 -0700 "bruce" wrote: > so haliphax... > > since you seem to be the primary person with this issue.. at least > for now... i'll ahead and nominate you to the guy in charge of making > sure posters follow the written rule to not top/down/side/left/right > post... > > h

Re: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
On Wed, 2009-04-01 at 13:42 -0500, haliphax wrote: > On Wed, Apr 1, 2009 at 1:38 PM, Robert Cummings wrote: > > On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: > >> On Wed, Apr 1, 2009 at 11:53 AM, bruce wrote: > >> > and haliphax... > >> > > >> > i specifically sent the reply to only you.. yo

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
so haliphax... since you seem to be the primary person with this issue.. at least for now... i'll ahead and nominate you to the guy in charge of making sure posters follow the written rule to not top/down/side/left/right post... have fun!!! -Original Message- From: haliphax [mailto:h

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Wed, Apr 1, 2009 at 1:38 PM, Robert Cummings wrote: > On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: >> On Wed, Apr 1, 2009 at 11:53 AM, bruce wrote: >> > and haliphax... >> > >> > i specifically sent the reply to only you.. you then felt the need to reply >> > to the list as a whole >

Re: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: > On Wed, Apr 1, 2009 at 11:53 AM, bruce wrote: > > and haliphax... > > > > i specifically sent the reply to only you.. you then felt the need to reply > > to the list as a whole > > > > hmm.. ok.. this thread is officially dead!! > > > > unle

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Wed, Apr 1, 2009 at 11:53 AM, bruce wrote: > and haliphax... > > i specifically sent the reply to only you.. you then felt the need to reply > to the list as a whole > > hmm.. ok.. this thread is officially dead!! > > unless of course it gets back to the initial question... > > peace!! > >

Re: [PHP] & and && and weird results

2009-04-01 Thread Lex Braun
PJ, On Wed, Apr 1, 2009 at 1:40 PM, PJ wrote: > SELECT * FROM book >WHERE id IN (SELECT bookID >FROM book_author WHERE authID IN (SELECT author.id >FROM author WHERE LEFT(last_name, 1 ) = '$Auth' && > LEFT(last_name, 1 ) = '$Auth1' && LEFT(last_name, 1 ) = '$Auth2')); >

Re: [PHP] & and && and weird results NOT solved but FIXED ....

2009-04-01 Thread PJ
PJ wrote: > Kyle Smith wrote: > >> Kyle Smith wrote: >> >>> PJ wrote: >>> I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to

Re: [PHP] & and && and weird results

2009-04-01 Thread PJ
Kyle Smith wrote: > Kyle Smith wrote: >> PJ wrote: >>> I hope somebody can make sense of this. >>> First, I don't understand what the difference is supposed to be between >>> & and && - is there a difference for php and/or mysql? >>> Second, I am trying to select all occurrences in a table.column w

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
and haliphax... i specifically sent the reply to only you.. you then felt the need to reply to the list as a whole hmm.. ok.. this thread is officially dead!! unless of course it gets back to the initial question... peace!! -Original Message- From: Robert Cummings [mailto:rob...@i

Re: [PHP] & and && and weird results

2009-04-01 Thread Kyle Smith
Kyle Smith wrote: PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is

Re: [PHP] & and && and weird results

2009-04-01 Thread Kyle Smith
PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is I, J, or K but not

[PHP] & and && and weird results

2009-04-01 Thread PJ
I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is I, J, or K but not I or J or K

Re: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
On Wed, 2009-04-01 at 11:25 -0500, haliphax wrote: > On Wed, Apr 1, 2009 at 8:33 AM, bruce wrote: > > not another top/side/bottom post thread again!!! > > > > > > > > -Original Message- > > From: haliphax [mailto:halip...@gmail.com] > > Sent: Wednesday, April 01, 2009 5:38 AM > > To: php-g

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Wed, Apr 1, 2009 at 8:33 AM, bruce wrote: > not another top/side/bottom post thread again!!! > > > > -Original Message- > From: haliphax [mailto:halip...@gmail.com] > Sent: Wednesday, April 01, 2009 5:38 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Workflow app for software >

Re: [PHP] Error on .htaccess

2009-04-01 Thread Virgilio Quilario
> In all the servers i had tested my system i dont have any problem, but in > this server the apache are displaying to me the error 500 "Internal Server > Error". > > Someone can say tome what is wront with my .htaccess? > > RewriteEngine On > > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond $1

Re: [PHP] Error on .htaccess

2009-04-01 Thread Daniel Brown
On Wed, Apr 1, 2009 at 10:39, Igor Escobar wrote: > In all the servers i had tested my system i dont have any problem, but in > this server the apache are displaying to me the error 500 "Internal Server > Error". > > Someone can say tome what is wront with my .htaccess? This is a question for

[PHP] Error on .htaccess

2009-04-01 Thread Igor Escobar
In all the servers i had tested my system i dont have any problem, but in this server the apache are displaying to me the error 500 "Internal Server Error". Someone can say tome what is wront with my .htaccess? RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond $1 !-d RewriteRule ^

[PHP] stream_socket_client with tls: problem in Solaris 8

2009-04-01 Thread Laura Longo
Hi all, I've a problem with stream_socket_client function and tls under Solaris 8 (sparc). The client code follows up: array('capture_peer_cert'=>TRUE))); $fp = stream_socket_client("tls://192.168.14.200:8000", $errno, $errstr, 30, STREAM_CLIENT_CONNECT, $context); if (!$fp) { echo "$errst

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Tue, Mar 31, 2009 at 4:37 PM, bruce wrote: > hey todd... > > just toook a look at the polarion svn-web app i thought that was closed > source... i see that it's open!!! > > -Original Message- > From: haliphax [mailto:halip...@gmail.com] > Sent: Tuesday, March 31, 2009 2:18 PM > To:

Re: [PHP] thread question

2009-04-01 Thread Toke Herkild
Ashley Sheridan skrev: On Wed, 2009-04-01 at 19:41 +0800, Virgilio Quilario wrote: Hi all, Another question: If a script starts to perform an operation and the user browses away will that terminate the thread perfoming the operation eg. the operation is aborted ? Mvh Toke the script is abort

Re: [PHP] thread question

2009-04-01 Thread Ashley Sheridan
On Wed, 2009-04-01 at 19:41 +0800, Virgilio Quilario wrote: > >>> Hi all, > >>> > >>> Another question: > >>> > >>> If a script starts to perform an operation and the user browses away will > >>> that terminate the thread perfoming the operation eg. the operation is > >>> aborted ? > >>> > >>> Mvh

Re: [PHP] thread question

2009-04-01 Thread Virgilio Quilario
>>> Hi all, >>> >>> Another question: >>> >>> If a script starts to perform an operation and the user browses away will >>> that terminate the thread perfoming the operation eg. the operation is >>> aborted ? >>> >>> Mvh >>> Toke >> >> the script is aborted as soon as server gets no response from t