link selection
In my website i have many links that are targetted to the same php file .
for example 1. <a href="myfile.php" id="abc"> abc </a>
2. <a href="myfile.php" id="xyz"> xyz </a>
3. <a href="myfile.php" id="pqr"> pqr </a>
i have used anchor tag for links. Is it possible to find out which link is clicked at any instance?. i need the codes in php.

