Re: [PHP-DB] undefined function Mysql_connect()

2008-01-06 Thread Chris
I am running Windows XP PRO, Appache 2.0 PHP 5.2.5 as a module, Did you install the php-mysql module too ? http://www.php.net/manual/en/ref.mysql.php Look under the Installation on Windows Systems section. -- Postgresql php tutorials http://www.designmagick.com/ -- PHP Database Mailing

RE: [PHP-DB] undefined function error

2005-03-18 Thread Bastien Koert
from the php manual [quote] This MySQL extension doesn't support full functionality of MySQL versions greater than 4.1.0. For that, use MySQLi. [/quote] http://ca3.php.net/manual/en/ref.mysqli.php bastien From: Chip Wiegand [EMAIL PROTECTED] To: PHP DB php-db@lists.php.net Subject: [PHP-DB]

Re: [PHP-DB] undefined function error

2005-03-18 Thread Mark Cain
It could be possible that mySQL is not enabled in your installation of PHP. Let the server parse a page with phpinfo() in it and read the results. Look for mySQL enabled. Perhaps the reason it runs fine on another server is that the php on that server has mysql enabled. HTH, Mark Cain -

RE: [PHP-DB] undefined function

2004-05-24 Thread Miguel Guirao
:[EMAIL PROTECTED] Enviado el: Viernes, 21 de Mayo de 2004 05:01 p.m. Para: [EMAIL PROTECTED] Asunto: Re: [PHP-DB] undefined function Miguel Guirao wrote: First, I do not have that line in my php.ini file. In what section should I add it? Anywhere, but best place as long as organization

Re: [PHP-DB] undefined function

2004-05-24 Thread John W. Holmes
From: Miguel Guirao [EMAIL PROTECTED] BTW, I have four different PHP.ini files in my system, where I can see which one is using it? I added it to all of them!! phpinfo() will product a page that shows you what php.ini file PHP is using. It's in the first block. ---John Holmes... -- PHP

RE: [PHP-DB] undefined function

2004-05-24 Thread Miguel Guirao
Guirao; 'Bruno Ferreira'; [EMAIL PROTECTED] Asunto: Re: [PHP-DB] undefined function From: Miguel Guirao [EMAIL PROTECTED] BTW, I have four different PHP.ini files in my system, where I can see which one is using it? I added it to all of them!! phpinfo() will product a page that shows you what

Re: [PHP-DB] undefined function

2004-05-21 Thread Bruno Ferreira
Miguel Guirao wrote: I'm receiving this error: Fatal error: Call to undefined function: mssql_connect() in e:\inetpub\wwwroot\sitio\TMP5w3gxy2pnf.php on line 9 This is line 9:if (!( $con = mssql_connect($maquina, $usuario, $password))) $maquina = SERVIDOR; $usuario = sa;

RE: [PHP-DB] undefined function

2004-05-21 Thread Miguel Guirao
] Enviado el: Viernes, 21 de Mayo de 2004 02:39 p.m. Para: [EMAIL PROTECTED] Asunto: Re: [PHP-DB] undefined function Miguel Guirao wrote: I'm receiving this error: Fatal error: Call to undefined function: mssql_connect() in e:\inetpub\wwwroot\sitio\TMP5w3gxy2pnf.php on line 9 This is line 9

Re: [PHP-DB] undefined function

2004-05-21 Thread Bruno Ferreira
Miguel Guirao wrote: First, I do not have that line in my php.ini file. In what section should I add it? Anywhere, but best place as long as organization is concerned would be under the Dynamic extensions label. Bruno Ferreira PS - You should check the default php.ini that comes with

Re: [PHP-DB] Undefined function mysql_connect

2004-01-05 Thread Jason Wong
On Monday 05 January 2004 11:55, Richard Bewley wrote: I compiled mySQL 4.0.16 from source, and installed PHP 4 off the RH9 cd. I also have the php-mysql-4.2.2-17 rpm installed. But for some reason, I keep getting call to undefined function mysql_connect, and it won't connect to the mysql

RE: [PHP-DB] undefined function: mysql_pconnect()

2003-03-01 Thread Julien Wadin
Could you post your entire script to see what's wrong ? -Message d'origine- De : Cameron [mailto:[EMAIL PROTECTED] Envoyé : samedi 1 mars 2003 6:17 À : [EMAIL PROTECTED] Objet : [PHP-DB] undefined function: mysql_pconnect() I'm new to this stuff, so you have to excuse me if I seem

Re: [PHP-DB] undefined function: mysql_pconnect()

2003-03-01 Thread Paul Burney
on 3/1/03 12:16 AM, Cameron at [EMAIL PROTECTED] appended the following bits to my mbox: I'm new to this stuff, so you have to excuse me if I seem dense. I can't get MySQL base operation from PHP 4.22 under RedHat Linux 8.0. I get the following error when trying to use mysql_connect().

Re: [PHP-DB] undefined function: mssql_connect()

2003-01-06 Thread Frank M. Kromann
Hi With PHP 4.3.0 you can use --with-mssql (it looks for freetds in /usr/local/freetds by default). Then you can use the mssql.* settings in php.ini. When you compile using --with-sybase you would have to use the sybase.* settings in php.ini, as that is the extension you would be using. You

Re: [PHP-DB] undefined function

2002-04-09 Thread Julie Meloni
N Fatal error: Call to undefined function: mysql_connect() in N /var/www/html/action.php on line 13 This indicates you do not have MySQL support built into PHP. Assuming a non-Windows OS by the pathnames above, you must use --with-mysql when issuing the configure command when building PHP.

Re: [PHP-DB] undefined function

2002-04-09 Thread Nick
do I go from here? Thanks - Original Message - From: Julie Meloni [EMAIL PROTECTED] To: Nick [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, April 09, 2002 9:44 AM Subject: Re: [PHP-DB] undefined function N Fatal error: Call to undefined function: mysql_connect() in N /var/www

Re: [PHP-DB] undefined function

2002-04-09 Thread Jason Wong
On Wednesday 10 April 2002 00:12, Nick wrote: Hi: thank you for you e mail I am using redhat7.2 I am new to php and linux , do not know how to configure mysql into php Install: php-mysql-4.0.6-7.i386.rpm it's on the second disc. -- Jason Wong - Gremlins Associates -