I have a few questions related to webpages:
1. How to auto-feed entry in a text-box on a website ?
or
2. Can we send values to a website thru another website ?
and can we capture the results displayed on a website in database?
Printable View
I have a few questions related to webpages:
1. How to auto-feed entry in a text-box on a website ?
or
2. Can we send values to a website thru another website ?
and can we capture the results displayed on a website in database?
You may be able to achieve getting the values if you are talking about autosuggest scenarios with webservice through Ajax.
Is that what you were asking?
If not, please be more specific as it helps answering the questions better.
I will be more specific
Can I send the search key words to the google search engine thru my webpage.
I want the entry to be done in my web page, and the search shud be made thru google,and the first page that google displays should be captured line-by-line in a gridor a database/
The answer to your first question is YES.
Look at the sample code I provided below.
I am unsure of question 2.Code:<form method="GET" action="http://www.google.com/search">
<table width="95%" border=0 cellspacing=0 bgcolor=#FFFFFF>
<tr valign=top>
<td>
<div align="center">
<input type=text name=q size=31 maxlength=255 value="">
<br>
<input type=submit name=sa value="Google Search">
</div></td>
</tr>
</table>
</form>
Someone else may be able to help you out.
Good luck.