hi in this app i have three pages
from the first page id is passed to the second page.in the third page i am not able to get the value..............
if (mysql_num_rows($result) > 0 )
{
while($row = mysql_fetch_row($result))
{
echo "<tr>";
echo "<td><a href='detailjob.php?id=".$row[3]."'>".$row[0]."</td><td>".$row[1]."</td>";
echo "</tr>";
echo "<tr><td bgcolor='#008080'></td><td bgcolor='#008080'></td></tr>";
}
echo "</table>";
}
$line=$_GET['id'];
echo $line;
$result=mysql_query("SELECT * FROM post_resume where id='$line'");
for ($i = 0; $i < 1; ++$i)
{
$line = mysql_fetch_row($result);
$rid=$line[0];
echo "<table width='60%'>";
print "<tr><td><font face='Times New Roman' color='#008080' size='3'><strong>Resume Title</strong></font></td></tr>";
print "<tr><td> $line[2] </td></tr>";
print "</table>";
<form method="post" action="agreement1.php">
<?php
echo "thanks for creating aggreement with CG";
echo $_GET['rid'];
$line=$_GET['rid'];
echo $line;
?>