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 trialChandan K. Sah
Courses Plus Student 12,665 PointsPHP Mysql Select Query
<?php
include 'inc/db_connect.php';
$order="SELECT name, email, bitcoin, perfectmoney, egopay FROM persons WHERE id='id'";
$result=mysqli_query($con,$order);
if($result){
echo "success";
}else{
echo "failed";
}
$row = mysqli_fetch_array($result);
echo $row['name'];
?>
My code looks correct but i don't understand why its not echoing $row['name'];.
2 Answers
George Cristian Manea
30,787 Pointsyour WHERE clause is missing a dollar sign WHERE id='id' it should be WHERE id='$id'
Hugo Paz
15,622 PointsTry this instead,
$row = mysqli_fetch_array($result);
echo $row[0];
Hugo Paz
15,622 PointsHugo Paz
15,622 PointsI dont think he is passing a variable there, its just a full query.
Chandan K. Sah
Courses Plus Student 12,665 PointsChandan K. Sah
Courses Plus Student 12,665 PointsThanks for showing the mistake George, it helped.