faqts : Computers : Programming : Languages : PHP : Common Problems : Tips and Tricks

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

5 of 5 people (100%) answered Yes
Recently 4 of 4 people (100%) answered Yes

Entry

How can I search the PHP Knowledge Base from a bookmark?

Jan 25th, 2000 16:03
Leon Atkinson,


Create a bookmark to the following URL:
javascript:query=window.prompt('PHPKB:',''); 
if(query && query != '') 
{ 
   window.location ='http://www.faqts.com/knowledge-
base/search/index.phtml?search='+query; 
} 
else 
{ 
   history.go(-1);
}
This code must be all on one line.
When you click on this bookmark a small dialog will appear.  Enter a 
search into the text box and you will taken to the PHPKB site where 
your search results will be listed.