Jump to content

Help with Join Query


datoshway

Recommended Posts

Thank you!  For some reason i'm only getting two results from one table with that query.  There should be 3 results if we were getting data from both tables.  Below is my full code.  Any ideas on where the snag might be?

 

$strQuery			= "SELECT * FROM tblDocuments INNER JOIN tblCleaning ON ( tblCleaning.strMessage = tblDocuments.strMessage ) ORDER BY tblDocuments.dtAdded DESC";
$queryGetNews		= db_query($strQuery);

 

 <?php
							if (db_num_rows($queryGetNews) > 0) {
								while ($objRow = db_fetch_object($queryGetNews)) {
									$intRowID		= intval($objRow->intID);
									$strRowName		= stripslashes($objRow->strHeadline);
									$strMessage		= stripslashes($objRow->strMessage);
									$dtAdded	= date("m/d/Y", strtotime($objRow->dtAdded));
									?>


									<div id="messages" style="border:1px solid #999; width:430px; height:26px; line-height:26px; margin-bottom:3px; padding-left:5px;"><?php echo $dtAdded; ?> - <?php echo $strMessage; ?></div>


									<?php
								}
								db_free_result($queryGetNews);
							}
						?>

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.