I have the following on one of my websites I'm creating:
echo "<tr><td><A HREF=view_company_details.php?comp_id=$id>$id</a></td>
</tr>";
When I go to the details page I have :
<?
$id = $_POST[ "id" ];
echo $id;
?>
why can't I see the id? I'm working my way to a modify company page and I'm learning about passing variables.
A