Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
I want to be able to retrieve the value from the Search box on the list page and append in to the add page...For example:If list page Search= "Mouse"Then I want the Add Record link on that page to be: page_add.php?Search=MouseIs there any way to do this?
Hi,you can do the following:
<A class=toplinks href="products_add.php">Add new</A>
and replace it with this one:
<A class=toplinks href="products_add.php?search={$searchaddlink}">Add new</A>
global $smarty;