Re: [PHP] Re: help with mysql

2004-01-27 Thread - Edwin -
On Tue, 27 Jan 2004 18:01:40 -0500 "Tom Flood" <[EMAIL PROTECTED]> wrote: > Martin, > > Thank you for the insight when I ran the php file you > suggested, nothing appeared to be related to mysql. I > installed both the php and mysql packages onto my Linux box > through a rpm installer. Whe

Re: [PHP] Re: help with mysql

2004-01-27 Thread daniel
My honest advice, dont use rpm's, you need to compile php via source if you want to do anything out of the ordinary like adding extensions, yes adding mysql is out of the ordinary for a standard rpm lol. Thats just my experience anyway. so ./configure --with-mysql=/usr/local/mysql or whereever you

Re: [PHP] Re: help with mysql

2004-01-27 Thread Tom Flood
Martin, Thank you for the insight when I ran the php file you suggested, nothing appeared to be related to mysql. I installed both the php and mysql packages onto my Linux box through a rpm installer. Where can I obtain mysql support for php? Tom "Martin Luethi" <[EMAIL PROTECTED]> wrote i

Re: [PHP] Re: help with mysql

2004-01-27 Thread Martin Luethi
line 16: mysql_connect("tflood", "thomas91"); I think you mean: mysql_connect("localhost", "tflood", "thomas91"); otherwise mysql_connect takes "tflood" as Server and "thomas91" as Username (if so, its better to replace passwords with * before posting) -> http://ch.php.net/mysql_connect after