1) "next" and "previous" links to appear when the search returns more results than the limit set in the code.
2) the user to be able to click on a link/radio button which would allow them to view complete result data on another page.
The code for goal 1 seems to need a "method = get" capability, while the second goal needs "method = post" to pass information on to the next page. We thought that the best way to do this would be to have two separate forms on the one html page. However, we can't seem to get either form to work in its entirety.
Here's the code for our form with the "next" and "previous" links:
Code:
<form name = "form2" id="form2" method="get" action="<?php echo $_SERVER['PHP_SELF']?>">
Goal 2 form:
Code:
<form name = $formNum id = $formNum method=post action=seach_match_result.php target='_blank'>
Are we on the right track, or is there a better way to accomplish this?
Thanks!
AM
