thank you for your helps.
if I use GET: Do I replace "POST" to "GET", anything else is the same? and where do I put the link <a href="another.php?something=ABC">The Link</a> ???
If I use POST: I need to submit the "number" and pass "something". can I do like the below code?
<form method="post" action="another.php">
<input type="text" name="number" value="something">
<input type="submit" name = "submit" value="Add">
</form>
Extract it on another.php using
PHP:
$something = $_POST['something'];
you wrote:
<form method="post" action="another.php">
<input type="text" name="something" value="ABC">
<input type="submit" name = "submit" value="Add">
</form>
Extract it on another.php using
PHP:
$something = $_POST['something'];