Recent Topics

1 Oct 03, 2005 16:17    

Question: can the search code be put in a separate php file...

I want to have a flash header with a search box in it (well a box so that people can type in a query then click search). However I don't know what code I would need to put in the php file that is accessed when the user clicks search...

Can anyone help?

2 Oct 03, 2005 16:30

<form action="your blog url here" method="get">
<input class="search" size="15" name="s" />
<input type="submit" value="Search" name="submit" class="btn"  />
</form>

That's basically the code you need. You can hard code your url in and it may not be very portable, but it is simple.


Form is loading...