I am displaying a value in directory.php page and then i want to display the result when clicked on the detail hyperlink , specific record to be shown in the directorydetail.php , but it is not showing. :(
i am submitting the code in chunks,
<td width="90"><?php echo $row_Directory; ?></td>
<td width="90" bgcolor="#666666"><a href="directory_detail.php?id=<?php echo $row_Directory; ?>">Details</a></td>
directorydetail.php
/////////// query for the details of the directory table///////////////
mysql_select_db($database_Connection, $Connection);
$query_Directory = "SELECT Sno,Name, Department, Designation, Off_tel, Res_tel, Mobile_Num, Fax_num, Email_Address FROM directory where Sno=$_GET ";
$Directory = mysql_query($query_Directory, $Connection) or die(mysql_error());
$row_Directory = mysql_fetch_assoc($Directory);
<td> </td>
<td><?php echo $row_Directory; ?></td>
<td> </td>