Forum Moderators: coopster

Message Too Old, No Replies

How to connect Google search results terms with database?

         

toplisek

11:50 am on Dec 27, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



How to connect Google search results at website with database?
Is this actually supported?

TheKiller

3:28 pm on Dec 30, 2010 (gmt 0)

10+ Year Member



huh O-o
i dont understand your first line...
Connect Google Search Results at what site and what database
Can you be more specific ?
i wont be able to help With Any SQL info but your question is very unclear

to query google to search u can use this link :-?
[google.ro...]

rocknbil

4:37 pm on Dec 30, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Unless I mis-read the question, see TOS 5.3: [google.com]

5.3 You agree not to access (or attempt to access) any of the Services by any means other than through the interface that is provided by Google, unless you have been specifically allowed to do so in a separate agreement with Google. You specifically agree not to access (or attempt to access) any of the Services through any automated means (including use of scripts or web crawlers) and shall ensure that you comply with the instructions set out in any robots.txt file present on the Services.

toplisek

9:05 pm on Dec 30, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



You see I like to set Google engine at my website. Is this actually possible to see search results and how are steps?

TheKiller

5:01 am on Dec 31, 2010 (gmt 0)

10+ Year Member



[google.com...]

fallow that to add a Google Form to your site

you can use a search engine provided by Google Adsense also

toplisek

12:41 pm on Jan 3, 2011 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I have made my own search engine field.

I have read this article but completely new to set search terms.

How to do this as my index.php has search terms like:
index.php?ae=%DF&q=Ofacebookmarketing&x=13&y=14&cnt=3

I like to read this by Google statistics. Is this possible to be set?
[googlecustomsearch.blogspot.com...]

TheKiller

4:32 pm on Jan 3, 2011 (gmt 0)

10+ Year Member



that link uses GET Variables...

toplisek

6:00 pm on Jan 3, 2011 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Yes, exactly.Please explain more...

TheKiller

10:43 am on Jan 4, 2011 (gmt 0)

10+ Year Member



Sorry but i dont know exactly what you want ...
i gave you a link where you can create a search engine form and submit the searches on google etc

toplisek

11:06 am on Jan 4, 2011 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Seems you are new to this. Can somebody else help me more how to set that link uses GET Variables...? to Google statistics?

TheKiller

11:33 am on Jan 8, 2011 (gmt 0)

10+ Year Member



you may say that .. but i doubt anyone will rush to help you as you are pretty unclear of what you are trying to do ...

With "Google statistics" you mean Google Analytics ?

you want to get some Google data inside a data base you will create?

if you have the script to execute in that link i can help you set it


Edit :

Heres a form with all the Variables you got in that link


<form action="" method="get" >
ae:
<input type="text" size="1" maxlength="2" name="ae"/>Search Query:
<input type="text" size="1" maxlength="2" name="q"/>X Size:
<input type="text" size="1" maxlength="4" name="x"/>
<br /><br />Y Size :
<input type="text" size="1" maxlength="2" name="y"/>cnt:
<input type="text" size="1" maxlength="2" name="cnt"/>
<input type="submit" value="Submit" title="Submits" />
<input type="reset" value="Reset" />
</form>


you will have to use this Variables in your PHP Script to do the commands you want to do...
$_GET['ae'], $_GET['q'], $_GET['x'], $_GET['y'], $_GET['cnt']