I have some scripts that pass info via the url, eg,
<a href="script.php?var=variable">Script dependent on value of var</a>
script.php almost always has a line
$query="select * from db where id='$var'";
The problem is that the admin has turned off
register_globals which has broken this method.
Is there a simple replacement for this?
Suggestions on what to read in order to learn and
understand what to do next?
Thanks
B