Jump to content

Duplicate output


zed420

Recommended Posts

Hi All

Can someone please point out what am I doing wrong here, the query should display one set of results but its showing me THREE same results even thou there is only ONE set of results in the database so the insert query is fine it hasn't inserted the duplicate data. Some help will appreciated. Thanks

		function normalJob(){
$id = $_GET['id'];
$query = "SELECT DISTINCT 
job_tb.job_id,job_tb.dateTime,job_tb.cust_name,job_tb.cust_address,job_tb.des,job_tb.typeOfbooking, user.id 
FROM job_tb,user 
WHERE job_tb.user_id = '$id'";
$result = mysql_query($query)or die(mysql_error());	   

?><div class="smallerText">
<b>These are the jobs you have booked so far.  Please click on Job ID to view further details about the job</b>
<TABLE BORDER=0 WIDTH=100% CELLSPACING=3 CELLPADDING=3 ALIGN=CENTER bgcolor="#CCCCCC">
<TR bgcolor="#FFFFCC" align="center">
<td width="10%"><font color=red><b>Job No.</b></font></TD>
<td width="15%"><font color=red><b>Date/Time</b></font></TD>
<td width="15%"><font color=red><b>Name</b></font></TD>
<td width="25%"><font color=red><b>Pick up Address</b></font></TD>
<td width="20%"><font color=red><b>Destination</b></font></TD>
<td width="20%"><font color=red><b>Booking Type</b></font></TD>
</tr>
<?
	while ($row = mysql_fetch_array($result))  {
    extract($row);
	echo "<tr >
<td>
<a href=\"javascript:open_window('detailNormal.php?job_id=$job_id');\">" . $row['job_id'] . "</a></td>
	<td>" . $row['dateTime'] . "</td>
	<td>" . $row['cust_name'] . "</td>
	<td>" . $row['cust_address'] . "</td>
	<td>" . $row['des'] . "</td>
	<td>" . $row['typeOfbooking'] . "</td>
	</tr>";
}
?></TABLE></div><?
} 
normalJob();

 

Thanks

Zed

Link to comment
https://forums.phpfreaks.com/topic/134038-duplicate-output/
Share on other sites

Looks like your query would benefit from a JOIN.

 

SELECT DISTINCT
job_tb.job_id,job_tb.dateTime,job_tb.cust_name,job_tb.cust_address,job_tb.des,job_tb.typeOfbooking, user.id 
FROM job_tb
LEFT OUTER JOIN user ON job_tb.user_id = user.id
WHERE job_tb.user_id = ".int_val($id)."

 

With the current query you are bound to get a resultset for each user

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/134038-duplicate-output/#findComment-697700
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.