Hello,
I need to start the process of modifying all my php pages so they work correctly with register_globals = Off.
I've read and read but just don't get where to use $Post, $GET, etc in my pages.
I have a table of contents page that has several links like so:
<a href="supervisors_data.php?recnum=100">Supervisor 100</a>
On my template page I match the recnum with the id:
$result = mysql_query( "SELECT * FROM db_Supervisors WHERE id=$recnum" );
And it should then display based on that match:
printf("%s ", mysql_result($result,id,"supervisor_name"));
printf("%s ", mysql_result($result,id,"supervisor_dept"));
...etc.
Where does the $_POST go... on the first page or both. Been messing with this for about a week and just having no luck. Just need a push in the right direction. Guess I'm just not 'grokking' this whole concept.
Thanks in advance.
Frank M.