Re: [PHP] How do I convert an array into a mask?

2002-11-05 Thread Michael Sims
On Tue, 5 Nov 2002 20:56:33 -0800, you wrote: Does anyone know of a nice efficient way to convert an array of values into a mask... I'm going to assume that you mean a bitmask. I'm not exactly sure what you're trying to accomplish, so I may be off base here, but let me describe how I'm using

Re: [PHP] Grammar/how toes?

2002-11-05 Thread Evan Nemerson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The right way to properly code: php.net/basic-syntax The right way to properly use superfluously excessive pleonastic repetitive tautological redundancies: thesaurus.com Sorry... couldn't resist. On Tuesday 05 November 2002 06:48 am, Karl

Re: [PHP] 4.2.3 compile problem on OSX

2002-11-05 Thread Dale Schell
I had the same problems with 4.2.3. I was able to successfully compile 4.3.0-pre1 with little problems. Dale On 11/4/02 4:12 PM, Kristopher Yates [EMAIL PROTECTED] wrote: Hello, I'm trying to compile PHP4.2.3 for Mac OSX 10.2 (Jaguar). Has anyone else had this problem (see below)?

[PHP] PHP + MySQL, how to get total rows matched when using LIMIT 0, 10?

2002-11-05 Thread SED
I'm trying to get the total matched rows when I'm using LIMIT 0, 10, but I only get the number 10, when the total should be around 100. So, can I get total matched rows without doing a separate query using count()? Here is an example of my current query: $result = mysql_query(SELECT * FROM

[PHP] RE: PHP + MySQL, how to get total rows matched when using LIMIT 0, 10?

2002-11-05 Thread Jeroen Geusebroek
I'm trying to get the total matched rows when I'm using LIMIT 0, 10, but I only get the number 10, when the total should be around 100. So, can I get total matched rows without doing a separate query using count()? You first have to get the whole result set without the limit OR make use of

Re: [PHP] PHP + MySQL, how to get total rows matched when using LIMIT 0, 10?

2002-11-05 Thread 1LT John W. Holmes
I'm trying to get the total matched rows when I'm using LIMIT 0, 10, but I only get the number 10, when the total should be around 100. So, can I get total matched rows without doing a separate query using count()? Here is an example of my current query: $result = mysql_query(SELECT * FROM

RE: [PHP] Help me learn! with an explanation of these two functions.

2002-11-05 Thread Steve Jackson
Joins. Cool. Never heard of them before now but have started experimenting with them. What does this error mean? Error: cannot select orderid select orderid from orders, email where orders.orderid = email.orderid and email.checked='no' Column: 'orderid' in field list is ambiguous My query

RE: [PHP] Help me learn! with an explanation of these two functions.

2002-11-05 Thread Ernest E Vogelsinger
At 08:58 06.11.2002, Steve Jackson said: [snip] Joins. Cool. Never heard of them before now but have started experimenting with them. What does this error mean? Error: cannot select orderid select orderid from orders, email where orders.orderid =

<    1   2   3