Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Using PHP with MySQL Connecting PHP to MySQL Installing MySQL with XAMPP

I installed Mysql using standard approach(downloaded from mysql website), is there a way to "connect" XAMPP to the mysql

I got workbench, mysql community server. So I unchecked the option "mysql" while installing XAMPP. Now it automatically disabled mysql when I start XAMPP control panel...

1 Answer

You should download MAMP. Then use this script:

<?php
$link = mysql_connect('server_address', 'mysql_user', 'mysql_password');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>

Fill in the server address, mysql_user and the mysql_password.