Hi Everyone,
I want to display the vehicles every user is selling but for some reason I'm getting duplicate information. I think the answer to my question is the array_unique function but I'm having a hard time trying to figure out where the function should go? Any tips would be great, thanks!
http://www.whatsmyowncarworth.com/fo...ql-command.php
PHP Code:<?php
include_once "init.php";
echo "<table border='1'>";
echo "<tr> <th>User ID</th> <th>First Name</th> <th>Last Name</th> <th>Car Desc ID</th> <th>Price</th> <th>Mileage</th> <th>Transmission</th> <th>Color</th> <th>Year</th> <th>Make</th> <th>Model</th> </tr>";
$query = "SELECT users.user_id, users.firstname, users.lastname, prices.car_desc_id, prices.price, \n"
. "\n"
. "prices.mileage, prices.transmission, prices.color, car_desc.year, car_desc.make, car_desc.model\n"
. "\n"
. "FROM users, prices, car_desc\n"
. "\n"
. "WHERE prices.car_desc_id LIMIT 0, 30 ";
// $result = array_unique($query);
// $query = "SELECT * FROM car_desc ORDER BY id ASC";
$thedude = mysql_query($query) or die(mysql_error());
// $result = array_unique($thedude);
while ($row = mysql_fetch_array($thedude)) {
$user_id = ($row['user_id']);
$firstname = ($row['firstname']);
$lastname = ($row['lastname']);
$car_desc_id = ($row['car_desc_id']);
$price = ($row['price']);
$mileage = ($row['mileage']);
$transmission = ($row['transmission']);
$color = ($row['color']);
$year = ($row['year']);
$make = ($row['make']);
$model = ($row['model']);
// keeps getting the next row until there are no more to get
/*while ($row = mysql_fetch_array($result))*/ {
// Print out the contents of each row into a table
?>



Reply With Quote




Bookmarks