Re: Selecting Distinct with MySQL and PHP4??

2001-06-10 Thread John Meyer
At 09:54 PM 6/10/2001 -0400, Jeffrey L. Fitzgerald wrote: >Howdy Hi, >Any word on how to select distinct database records using PHP code?? Thanks in >advance... mysql_query("SELECT DISTINCT * FROM BLAH;"); - Before posting, p

Re: Selecting Distinct with MySQL and PHP4??

2001-06-10 Thread Rolf Hopkins
9:54 Subject: Re: Selecting Distinct with MySQL and PHP4?? > > Howdy Hi, > Any word on how to select distinct database records using PHP code?? Thanks in > advance... > > > - > Before posting, please check:

Re: Selecting Distinct with MySQL and PHP4??

2001-06-10 Thread Paul DuBois
At 9:54 PM -0400 6/10/01, Jeffrey L. Fitzgerald wrote: >Howdy Hi, >Any word on how to select distinct database records using PHP code?? Thanks in >advance... Why would PHP have anything to do with it? Isn't it a matter of constructing the proper SELECT DISTINCT SQL statement? -- Paul DuBois, [

Re: Selecting Distinct with MySQL and PHP4??

2001-06-10 Thread Jeffrey L. Fitzgerald
Howdy Hi, Any word on how to select distinct database records using PHP code?? Thanks in advance... - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the lis

Re: MySQL and PHP4

2001-05-27 Thread oltra jean-michel
On Fri, 25 May 2001, Andrey Kotrekhov wrote: > I don't agree. > If mysql install in other directory then /usr/local > you need use --with-mysql=mysqldir > and sometimes --with-mysql-include and --with-mysql-lib > options. > > > Do you need to specify a directory? I just did --with-mysql > > >

Re: MySQL and PHP4

2001-05-25 Thread Sommai Fongnamthip
Dear, easy way to install another application with mysql is specify mysql dir and mysql data dir at installation. use this parameter while install mysql ./configure --prefix=/usr/local/mysql \ --> this will install all mysql --localstatedir=/usr/local

Re: MySQL and PHP4

2001-05-24 Thread Andrey Kotrekhov
On Thu, 24 May 2001, Scott Baker wrote: I don't agree. If mysql install in other directory then /usr/local you need use --with-mysql=mysqldir and sometimes --with-mysql-include and --with-mysql-lib options. > Do you need to specify a directory? I just did --with-mysql > > At 01:14 PM 5/24/2001

Re: MySQL and PHP4

2001-05-24 Thread Zachary Burnham
--with-mysql uses PHP's built-in MySQL libraries, while --with- mysql=/path/to/mysql will build it with the libraries of the MySQL installation already present. The version built into PHP4 seems to work ok for most things, but it's a bit behind in the point revs; which version it uses escape

Re: MySQL and PHP4

2001-05-24 Thread Scott Baker
Do you need to specify a directory? I just did --with-mysql At 01:14 PM 5/24/2001 -0400, Bill Tangren wrote: >When I compile PHP4 (4.04pl1) with the option --with-mysql=mysqldir... > >I get the error > >'cannot find mysqlclient library under mysqldir' > >I did a search through the mysqsl (3.23.3

MySQL and PHP4

2001-05-24 Thread Bill Tangren
When I compile PHP4 (4.04pl1) with the option --with-mysql=mysqldir... I get the error 'cannot find mysqlclient library under mysqldir' I did a search through the mysqsl (3.23.38) source code after I compiled it, and I don't find that library anywhere? What am I doing wrong? Bill Tangren -