07-03-2009, 02:43 PM
|
#19 (permalink)
|
|
The Wanderer
Join Date: Jun 2009
Posts: 20
Thanks: 4
|
Thanks every one. there was a small mistake in the while loop.. now its working fine..
PHP Code:
while ($row1 = mysql_fetch_assoc($result1))
{
echo "<tr><td>";
echo $row1["posted_by"];
echo "</td><td>";
$postid = $row1["post_id"];
echo '<a href="http://www.konanakunteokkoota.org/applyhereforjob.php?username='.$username.'&jobid='.$postid.'">'.$row1["position"].'</a>';
echo "</td><td>";
echo $row1["job_level"];
echo "</td><td>";
echo $row1["job_posted_on"];
echo "</td></tr>";
}
I had to just move the $postid before using the url. now its working fine. 
|
|
|
|