Thank you for the answers !
I have only one doubt now:
When I send variables values using a link:
<a href="test.php?id=3">
I can get the value in the next page by using $_GET['id']
Is this safe and the only solution ?
I maean, what if somebody changes the id valued in the browser for example ?
_GET will think that it is safe but it is not (I suppose) and so the situation is the same as with register_globals = on
I think there is another way tosend values between pages without using forms... but which is ?
If I have a listed number of records coming from a DB I can imagine only the situation to use something like <a href="test.php?id=3">
to let know to the program wich item I have click ... I am confused about.... help !
Thank again
Fabi