Strange fatal error in terminal

Strange fatal error in terminal

am 02.05.2007 16:02:52 von geevaa

Hi group,

My program is

mysql_connect('ns1','tdphp8','tdphp8')or die('connection error');
print'hai';
?>
===========================================================
my output is

[tdphpadmin@conws60 ~/public_html/demo]$ php sql.php
PHP Fatal error: Call to undefined function mysql_connect() in /
home/
tdphpadmin/public_html/demo/sql.php on line 2
X-Powered-By: PHP/5.2.0
Content-type: text/html
===========================================================

In the web browser,Everything works good and
I am not getting the error or die message.
The string hai is displayed in the browser.
Actually database connection is established and data,insertion data
retrieval are successful
But i am receiving this error in terminal.

please help

Re: Strange fatal error in terminal

am 04.05.2007 17:48:46 von zeldorblat

On May 2, 10:02 am, Geevaa wrote:
> Hi group,
>
> My program is
>
> > mysql_connect('ns1','tdphp8','tdphp8')or die('connection error');
> print'hai';
> ?>
> ===========================================================
> my output is
>
> [tdphpadmin@conws60 ~/public_html/demo]$ php sql.php
> PHP Fatal error: Call to undefined function mysql_connect() in /
> home/
> tdphpadmin/public_html/demo/sql.php on line 2
> X-Powered-By: PHP/5.2.0
> Content-type: text/html
> ===========================================================
>
> In the web browser,Everything works good and
> I am not getting the error or die message.
> The string hai is displayed in the browser.
> Actually database connection is established and data,insertion data
> retrieval are successful
> But i am receiving this error in terminal.
>
> please help

Run php -i from the terminal and confirm the location of php.ini.
Make sure it's the same php.ini that's being used by the webserver.

Re: Strange fatal error in terminal

am 05.05.2007 05:11:55 von Steve Belanger

Usually that error occurs when mysql cannot be located by PHP either because
it was not compiled with MySQL, or because the extention wasn't loaded
properly.

You might want to put a phpinfo() file and see if you have MySQL enabled in
there.

Steve.

"Geevaa" wrote in message
news:1178114572.016812.129290@c35g2000hsg.googlegroups.com.. .
> Hi group,
>
> My program is
>
> > mysql_connect('ns1','tdphp8','tdphp8')or die('connection error');
> print'hai';
> ?>
> ===========================================================
> my output is
>
> [tdphpadmin@conws60 ~/public_html/demo]$ php sql.php
> PHP Fatal error: Call to undefined function mysql_connect() in /
> home/
> tdphpadmin/public_html/demo/sql.php on line 2
> X-Powered-By: PHP/5.2.0
> Content-type: text/html
> ===========================================================
>
> In the web browser,Everything works good and
> I am not getting the error or die message.
> The string hai is displayed in the browser.
> Actually database connection is established and data,insertion data
> retrieval are successful
> But i am receiving this error in terminal.
>
> please help
>