Thanks. I did tried Form, but I got stuck (see below) and I have been trying until 4AM..... I can't use <a href... a_file.php?ABC... > or can't use .... $var = $_GET['key']; because I have nothing to link
I tried
<form method="post" action="a_file.php"> .... to accept a <input type="text" name="number"...>
no problem to this point. But I also need to pass another value $ABC from "this_file.php" to "a_file.php" on the submit button clicks..
so 2 values on the submit clicks: one is "number" from user, one is $ABC from something else in a program will need to pass to "a_file.php"...
I don't know how to do it. Does any one know, please show me.