Hi guys, I want to make or design a Wikipedia gadget for my website which is based on various informative help a user can find.So I thought this gadget will suit my needs to add more into my website.But the problem is I don't know that creating Wikipedia gadget in html is possible or .Please answer me
Answered By
de Blair
10 points
N/A
#182490
How to make wikipedia gadget in HTML language?
Hello,
If you prefer doing things for yourself, however, you can find all the necessary information from their page source, like:
The name of the target CGI search utility and the names of the variables involved. Strip it to most crude, default language selected “English”, and carrying across the hidden variable from the source, here’s how a Wikipedia search might look:
<form action=”http://www.wikipedia.org/search-redirect.php” method=”get”>
Search Wikipedia:
<input type=”hidden” name=”language” value=”en” />
<input type=”text” name=”search” size=”20″ />
<input type=”submit” name=”go” value=” Go! ” />
</form>
That’s all.
It will look like:
Hope this will help you.