searching via url |
4/5/2010 7:58:57 PM |
PHPRunner General questions | |
M
mdorren author
My customer doesn't want his visitors to be able to search, but want to take them to filtered lists via buttons on his site. I therefore have taken out the left column and all search links in the list. Is there a format that I can use to construct how I want the list to display? For instance: |
|
![]() |
ficcionista 4/7/2010 |
So far i have found this in PHP Runner's help: //create dropdown box
select distinct(slakpi) as slakpi from reports1
|
M
|
mdorren author 4/7/2010 |
So far i have found this in PHP Runner's help: This code is inserted in the visual editor as a PHP Code Snippet on the desired list page. //create dropdown box
select distinct(slakpi) as slakpi from reports1
|
C
|
chaintm 4/8/2010 |
Trying to do what is suggested won't work in an insta gratification enviorment, I have no doubt that your client wants to pull down from a list and get instant search done without a box being filled. IE select and bam new page comes up with new related info... To do this you need to do two things. First make your list in your database. This is also very handy when your client would like to add to that list on the fly. Next make a Snippet and use something like the following.... |
![]() |
ficcionista 4/26/2010 |
Trying to do what is suggested won't work in an insta gratification enviorment, I have no doubt that your client wants to pull down from a list and get instant search done without a box being filled. IE select and bam new page comes up with new related info... To do this you need to do two things. First make your list in your database. This is also very handy when your client would like to add to that list on the fly. Next make a Snippet and use something like the following.... (...)
|