Hi,
so I understand that on PHP 4.2 and later I need to upgrade my coding by use $HTTP_POST_VARS to get values from variables.
I was used to pass variables values trought html code like:
<a href="file.php?var1=1&var2=$value">Click</a>
I see that also this is no good anymore...
So, which is the right way ?
I am thinking to use sessions and save values there troguth pages...is this the way ?
session_start();
session_register('var1');
session_register('var2');
$var1 = 1;
$var2 = $_POST['value'];
Is this ok or there are security problems ?
Thanks !
Fabi