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

PHP

PHP 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

your WHERE clause is missing a dollar sign WHERE id='id' it should be WHERE id='$id'

Hugo Paz
Hugo Paz
15,622 Points

I dont think he is passing a variable there, its just a full query.

Thanks for showing the mistake George, it helped.

Hugo Paz
Hugo Paz
15,622 Points

Try this instead,

$row = mysqli_fetch_array($result);
        echo $row[0];