i have 2 table which one table display the value.
this is the query one of the table…
<?php
$open=mssql_query("Select * from tblTicket ");
while($row=mssql_fetch_array($open))
{
?>
<tr>
<td><?php echo "<a href='Ticketmanage.php?id={$row['TickNo']}'> $tick</a>"?></td>
<td><?php echo $name ?></td>
<td><?php echo $row['DateCreate']?> </td>
<td><?php echo $row['TimeCreate']?> </td>
<td><?php echo $row['Category']." (".$row['Subcat'].")"?></td>
</tr>
<?php
}
?>
and if the said value above exist on this table (TBLAssign)
the said value must not print on the top query…
Help…Thanks…