I want to pass the id of a row and the name of the table it came from between two pages.
If I have a link that says:
<a href=\"alter.php3?".$row["id"]."&".$table."\">alter</a>
how do I call the second variable ($table)?
The first one I can call simply by saying:
echo $id;
or
echo argv[0];
but saying:
echo $table;
or
echo argv[1];
produces no results at all...
am I phrasing the original link properly?
any suggestions would be most welcome :o)
thanks - dunstan orchard