I don't know if the title is really correct but this is what i want to do :
printf("<a href=\"%s?cmd=fp\">URL</a><br>", $PHP_SELF, $var1, $var2);
When i click on this URL it automatically reloads the php script and starts executing the part with in the if ($cmd == 'fp') statement.
However i also want to 'load' var1 and var2.
I can use
printf("<a href=\"%s?cmd=fp&var1=%s&var2=%s\">URL</a><br>", $PHP_SELF, $var1, $var2);
and it works perfectly, but i like to keep var1 and var2 hidden. Otherwise if i use the URL i see:
http://www.site.com/script.php3?cmd=fp&var1=STRING1&var2=STRING2
it is possible to hide the var1 and var2 values?