How can I get the text from an html link ? For example, if I have this form:
<form action="test.php" method="POST">
<a href="test.php" name="link">Text to store</a>
</form>
how could I have something similar to echo $_POST['link'];
How can I get the text from an html link ? For example, if I have this form:
<form action="test.php" method="POST">
<a href="test.php" name="link">Text to store</a>
</form>
how could I have something similar to echo $_POST['link'];