[PHP-DB] MySQL Newsgroup?

2005-04-26 Thread Nhan
I seek for a MySQL newsgroup, can anybody help me? Martin -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] PHP cannot access mySQL

2007-11-01 Thread Nhan
Hi, I have IIS 5.1 with PHP 5 and MySQL 4.1 With a client tool (such as MySQL Front) I can access MySQL. But my PHP page cannot, with the same username and passord. Why? What can I do? Thanks Nhan -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP-DB] PHP cannot access mySQL

2007-11-02 Thread Nhan
OK, now I have the errormessage: Fatal error: Call to undefined function mysql_connect() Why? "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Nhan wrote: >> Hi, >> I have IIS 5.1 with PHP 5 and MySQL 4.1 >> With a client tool (su

Re: [PHP-DB] PHP cannot access mySQL

2007-11-02 Thread Nhan
which cmmand tell PHP, that the script may ignore error and run further.? "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Nhan wrote: >> Hi, >> I have IIS 5.1 with PHP 5 and MySQL 4.1 >> With a client tool (such as MySQL Front) I

Re: [PHP-DB] PHP cannot access mySQL

2007-11-02 Thread Nhan
fore connecting"; $link = mysql_connect(const_HOSTNAME, const_USERNAME, const_PASSWORD); if (!$link) die("no connection is possible...: " .mysql_error()); echo "after link"; return; "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED

[PHP-DB] Re: PHP cannot access mySQL

2007-11-06 Thread Nhan
OK, I have it. I didn't install MySQL extension during installing. Thanks Nhan ""Nhan"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I have IIS 5.1 with PHP 5 and MySQL 4.1 > With a client tool (such as MySQL Front) I can access My