This topic is locked

Hiding the search parameters?

8/24/2007 5:27:03 AM
PHPRunner General questions
A
asimha author

I am calling the table_list.php from a regular HTML page and would like to be able to hide the returned search string URL
Any easy way to achieve this ?
Much appreciated!!

André

J
Jane 8/27/2007

Andre,
you can do the following:

  1. proceed to the Visual Editor tab, switch to HTML mode,


  2. find this code:

    <FORM name=frmSearch action=products_list.php method=get>


  3. and replace it with this one:

    <FORM name=frmSearch action=products_list.php method=post>



A
asimha author 8/27/2007

Andre,

you can do the following:

  1. proceed to the Visual Editor tab, switch to HTML mode,
  2. find this code:
  3. and replace it with this one:


Many thanks Jane - worked fine!