RE: [PHP-DB] Can someone help me out?

2005-06-08 Thread reclmaples
This makes sense but I can't figure out how it should look in the field, can you help? Here is what I currently have: select a.name,a.position,a.team,sum(b.yards) as Results from player a,passing b where a.player_num = b.player_num and a.position = '$pos' and b.year >= '$year' group by a.name ord

[PHP-DB] Remote linked server not accessibile

2005-06-08 Thread Raul
Does anyone have any ideeas for this problem which was already reported: http://bugs.php.net/32278 Thanks, Raul -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Re: php-db Digest 7 Jun 2005 17:56:06 -0000 Issue 2973

2005-06-08 Thread Bastien Koert
I did post something on mysql.com about the library but they pulled the post... Bastien From: Scott Powell <[EMAIL PROTECTED]> To: [EMAIL PROTECTED], php-db@lists.php.net Subject: [PHP-DB] Re: php-db Digest 7 Jun 2005 17:56:06 - Issue 2973 Date: Tue, 7 Jun 2005 22:42:18 -0700 (PDT) Bastie

[PHP-DB] MAIL SYSTEM ERROR - RETURNED MAIL

2005-06-08 Thread The Post Office
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] PHP/MySQL Access Denied

2005-06-08 Thread Tod B. Schmidt
Everybody's favorite problem but this one is strange. I can connect to my mysql 4.1.7 database fine from the command line, but php won't connect no matter what I try, I always get the same error. Here is the script close(); ?> This is what I get, doesn't matter what username/password I use, o

[PHP-DB] Creating an Associative Array

2005-06-08 Thread dpgirago
This question will probably be off-topic for some, but it does relate to a database application so please bear with me. I'm pulling date-times out of a MySQL db: mysql> select date_format(`date_time`, '%Y.%m.%d %H:%i:%s') as rightNow from location1 order by date_time desc limit 1; +--

[PHP-DB] Re: Subject: Creating an Associative Array

2005-06-08 Thread Neil Smith [MVP, Digital media]
At 21:04 08/06/2005 +, you wrote: To: MIME-Version: 1.0 Message-ID: <[EMAIL PROTECTED]> From: [EMAIL PROTECTED] Date: Wed, 8 Jun 2005 16:04:33 -0500 Content-Type: multipart/alternative; boundary="=_alternative 0073C60C8625701A_=" Subject: Creating an Associative Array This question will

[PHP-DB] Page refresh question

2005-06-08 Thread Chris Payne
Hi there everyone, I'm using PHP and MySQL in a shopping cart system but the client wants it so that when you add an item to the cart the page doesn't refresh and we all know with PHP the page MUST refresh in order to execute the MySQL query. Is it possible, maybe with javascript? That I can t

Re: [PHP-DB] Page refresh question

2005-06-08 Thread Han
Hi, I can think of 2 solutions: 1 is an old one I used ages ago, and it was to use javascript to put their choices (onclick, field.value=£3 type of thing) and when they click the OK button it gets sent to php script that sends it to mysql, etc. 2 is pretty much the same but using cookies wit