Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorruizit0
    • CommentTimeOct 23rd 2005
     
    hi.. one simples question.. my website is composed by somes index's. .
    modules/start/Link1.php -> start page
    modules/plogger/Link2.php -> plogger gallery
    modules/contacts/Link3.php -> contacts

    is possible to integrate the plogger search in to the link1.php .. to do searchs in the gallery from the start page ?
    :
    •  
      CommentAuthorBen
    • CommentTimeOct 24th 2005 edited
     
    as long as you add to the top of your pages where the gallery.php is:

    <?php include("gallery/gallery.php"); ?> as an example.

    and use the search form from the breadcrumbs at the bottom of the gallery.php file, should look something like this:

    <form action="/gallery/index.php" method="get">
    <input type="hidden" name="level" value="search" />
    <input type="search" class="input" size="20" name="searchterms"/>
    </form>

    you should be able to search from anywhere, of course you will have to change the paths to fit your site. At least this worked for me in my test page that was one folder above my plogger install. Oh and i also added the gallery header include as well.
    • CommentAuthorruizit0
    • CommentTimeOct 24th 2005
     
    thanks ill try :)