Jump to content

Testing MySQL


bupcguy

Recommended Posts

I have just installed Apache,PHP and MySQL. I have got Apache and PHP working ok together and i am just wondering what is a good test to make sure MySQL is working ok and how do i test to make sure the three programs are all working in sync.I have tried to connect to MySQL and i get this error message ( Fatal error: Call to undefined function mysql_connect() in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\test2.php on line 5 )

This is the script that i ran.

<html>
<head> <title>MySQL Test</title> </head>
<body>
<h1>
<?php $connection=mysql_connect("localhost","root", "*******")
or die("Could not connect to MySQL");
echo "Successfully connected to MySQL";
?>
</h1>
</body></html>


Thankyou
Link to comment
https://forums.phpfreaks.com/topic/32459-testing-mysql/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.