Re: [PHP-DB] Need help in solving issues with configuration of php-5.2.8 with mysql-5.3.1

2009-03-03 Thread niranjan k
Hi Chris, Thanks for the response. > 1. I ran php configuration as below. > > $./configure --with-apxs2=/usr/local/apache2/bin/apxs > --with-mysql=/apps/mysql/mysql > > It went fine. Chris > Are you sure? Yes it went fine. > 2. While running make, i got following relink error. > > ld: fatal:

Re: [PHP-DB] Need help in solving issues with configuration of php-5.2.8 with mysql-5.3.1

2009-03-03 Thread chris smith
> 1. I ran php configuration as below. > > $./configure --with-apxs2=/usr/local/apache2/bin/apxs > --with-mysql=/apps/mysql/mysql > > It went fine. Are you sure? > 2. While running make, i got following relink error. > > ld: fatal: file /usr/local/mysql/lib/libmysqlclient.so: wrong ELF class: > E

[PHP-DB] Need help in solving issues with configuration of php-5.2.8 with mysql-5.3.1

2009-03-03 Thread niranjan k
Hi, I installed 64 bit MySQL-5.3.1 and i am in the process of installing php-5.2.8. While configuring php with mysql, getting following issues. Issue: 1. I ran php configuration as below. $./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/apps/mysql/mysql It went fine.

[PHP-DB] Re: [PHP] Re: [PHP-DB] Re: Problems with displaying results

2009-03-03 Thread Ashley Sheridan
On Tue, 2009-03-03 at 11:08 -0600, Terion Miller wrote: > On Tue, Mar 3, 2009 at 10:32 AM, Shawn McKenzie wrote: > > > Terion Miller wrote: > > > I have two queries one pulls out which users to use and the second pulls > > > those users orders > > > Looks something like this but is only pullin

Re: [PHP-DB] Re: Problems with displaying results

2009-03-03 Thread Terion Miller
On Tue, Mar 3, 2009 at 10:32 AM, Shawn McKenzie wrote: > Terion Miller wrote: > > I have two queries one pulls out which users to use and the second pulls > > those users orders > > Looks something like this but is only pulling the first record: > > > > > > $query = "SELECT `UserName`, `A

[PHP-DB] Re: [PHP] Re: Problems with displaying results

2009-03-03 Thread Kyle Terry
On Tue, Mar 3, 2009 at 8:32 AM, Shawn McKenzie wrote: > Terion Miller wrote: > > I have two queries one pulls out which users to use and the second pulls > > those users orders > > Looks something like this but is only pulling the first record: > > > > > > $query = "SELECT `UserName`, `A

[PHP-DB] Re: Problems with displaying results

2009-03-03 Thread Shawn McKenzie
Terion Miller wrote: > I have two queries one pulls out which users to use and the second pulls > those users orders > Looks something like this but is only pulling the first record: > > > $query = "SELECT `UserName`, `AdminID` FROM admin > WHERE Key1 = 'YES' "; > > $result

[PHP-DB] Problems with displaying results

2009-03-03 Thread Terion Miller
I have two queries one pulls out which users to use and the second pulls those users orders Looks something like this but is only pulling the first record: $query = "SELECT `UserName`, `AdminID` FROM admin WHERE Key1 = 'YES' "; $result = mysql_query ($query) ; $row = my