Let's say I have the following code:
<a href="index.php">Link</a>
When the link is clicked I want it to pass on a POST value named a containing b, so that I on index.php can reach it with $_POST['a']. I understand that this is a job for AJAX, but how?