I want to retrieve data from a database with PHP and show it on a website.
This code does not work correctly. I want to display all cars that are Chevy on my database
"; while($row= mysql_fetch_array( $data )) { Print ""; Print "Name: ".$row['name'] . " "; Print "ImagePath: ".$row['imagePath'] . " "; Print "Description: ".$row['description'] . " "; Print "Price: ".$row['Price'] . " "; } Print ""; ?>