hi guys.....can anyone check my coding....what's wrong with my coding? the iframe that i'm trying to make, doesn't works well......when i click on the link, it goes to next page.....what i want is, when i clicked on the link, the info will come out in the same page....here's my coding....
<?php
echo "<br><br>";
echo "<a href = activity_list.php?id=", $row['id'] , "><b>Activity List</b></a>";
echo "<br />";
echo "<iframe frameborder='0' width='100%' src='activity_list.php?id=", $row['id']," >";
echo "</iframe>";
?>