automatic individual search based on customPage.php

3 posts by 2 authors in: Forums > CMS Builder
Last Post: April 25, 2008   (RSS)

Re: [equinox69] automatic individual search based on customPage.php

By Dave - April 24, 2008

Sure. If your field is called 'dealer_id' you should be able to display it with something like this:
<?php echo $record['dealer_id']; ?>

Next, you should be able to list all the inventory by a specific dealer by adding this to the url of the list page:
listPage.php?dealer_id=123

So if we combine those, it would look something like this:
<a href="listPage.php?dealer_id=<?php echo $record['dealer_id']; ?>">see the rest of this dealer's inventory</a>

Give it a try and let me know how it goes.
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] automatic individual search based on customPage.php

By Codee - April 25, 2008

It works terrificly!

So, are my questions just too easy or are you guys just THAT good? Both?
[;)]

Terry