View Single Post
Old 07-03-2009, 02:43 PM   #19 (permalink)
sandhyagupta
The Wanderer
 
sandhyagupta's Avatar
 
Join Date: Jun 2009
Posts: 20
Thanks: 4
sandhyagupta is on a distinguished road
Default

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.
sandhyagupta is offline  
Reply With Quote