please explain more.. how to setup another form action ?? and how will it work out fine ??
I have my own page called links.php, it has its own tables, queries, variables and everything.
I am trying all the possible ways but cannot get it to work. I think it would be best if I get it to work by doing something like links.php?do=search , I did it the same way for reviews (links.php?do=review), but can't get search working this way. This way all the functions of the directory would remain in a single file.
--------------- Added [DATE]1217641186[/DATE] at [TIME]1217641186[/TIME] ---------------
see we already have the search form ready in links.php
This is my
links.php?do=search part of the file:-
PHP Code:
//*********SEARCH PAGE************
if ($_REQUEST['do'] == 'search')
{
//WHAT TO PUT IN HERE?
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('links_searchbits') . '");');
$db->free_result($query_Search);
}
//*********END SEARCH PAGE************
--------------- Added [DATE]1217646411[/DATE] at [TIME]1217646411[/TIME] ---------------
alright, things are done !... :up:
I did a sub-page links.php?do=search and it works fine.
Thanks
--------------- Added [DATE]1217653087[/DATE] at [TIME]1217653087[/TIME] ---------------