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 trialKonrad Pilch
2,435 PointsWHy is this not connecting>?
HI,
Why is this not connecting to the database>?
<?php
$connect_error = 'Sorry we\'re experiencing connection issues';
$s = mysqli_connect('localhost', 'root', "") or die($connect_error);
$ss = mysqli_select_db('031PHP2012');
if ($ss = mysqli_connect()){
echo "not connected";
}
1 Answer
Brendan Stevens
7,293 PointsYou have an assignment in the conditional statement.
if ($ss = mysqli_connect())
Konrad Pilch
2,435 PointsKonrad Pilch
2,435 PointsBut even without it. Plus It doesn't matter the assignment, it's not connecting because I do displays the error with the assignment or not.