Forum Moderators: coopster
If the search was initiated the reloaded index.php then includes a Search_and_display_script.php in #contentbox
But the variables is not passed (or available) to the included Search_and_display_script.php file, thus no results are displayed.
I know that The Search_and_display_script.php works fine independently, but not when included in index.php.
Any suggestions?
<?
$searchresults = ('http//example.com/search_and_display_results.php?variable='.$variable1.'&variable='.$variable2);
include ($searchresults);
?>
Is this proper coding, or is there another way?.
Now I have to think about how I may get the $page value returned, so that the user can skip through all the search result pages.
Thanks for the assistance so far.