tgallagher26
03-19-2009, 02:49 PM
Ok here it is I am using this code
<?php
$search = array(' ','"');
$replace = array('+','%22');
$subject = $q;
$myurl = str_replace($search, $replace, $subject);
include 'simple_html_dom.php';
$html = file_get_html("http://www.google.com/search?hl=en&q=".$myurl."&aq=f&oq=");
$v = array();
foreach($html->find('div[class="s"]') as $e) {
$v[] = substr($e->plaintext, 0, 200);
}
$v = implode("", $v);
?>
to get all the decriptions from googles results page and input it into my meta tag.
So if you searched "Big Dog" on Google (http://www.google.com/search?hl=en&q=big+dog&aq=f&oq=) my meta tag would display
<meta name="description" content="Big Dog - Big Dog Motorcycles is the leading producer of custom, American V-twin motorcycles. Five models, each powered by a 117 cubic inch engine, set a new standard ...www.bigdogmotorcycles.com/ - 11k - CacheBigDog is the alpha male of the Boston Dynamics family of robots. ... BigDog is the size of a large dog or small mule, measuring 1 meter long, ...www.bostondynamics.com/content/sec.php?section=BigDogBig Dog · Little Dog · Rise · Boston Dynamics - Click to return to home page. products · Robotics · about us · contact. BigDog Sets World Record! ...www.bostoBig Dogs, Quality, value, and fun for the entire family. Since 1983. Big sizes available. Graphic T-Shirts. Show stock quote for WALKwww.bigdogs.com/ - 8k - Cached - Similar pagesFeb 26, 2009 ... If you were freaked out by the spooky Big Dog quadruped robot, you are going to love seeing it in action alongside US Army soldiers, ...gizmodo.com/5160863/big-dogs-us-army-antics-keeUpdate If you were amazed by this don't miss the hilarious spoof It's even better Boston Dynamics keeps working on.gizmodo.com/368651/new-video-of-bigdog-quadruped-robot-is-so-stunning -its-spBasic English grammar designed for beginning students and as a quick review, with interactive online exercises. Un sitio para aprender lo mínimo necesario ...aliscot.com/bigdog/ - 14k - Cached - Similby Big Dog on Mar 18, 2009 at 22:34 Political Leave a comment ..... Big Dogs House is proudly powered by WordPress | Entries (RSS) and Comments (RSS) ...www.onebigdog.net/ - 67k - Cached - Similar pa">
What I am trying to do now that I have acheive the results I was looking for is crop this text own to say 400 characters.
Can anyone help?
Tim..
<?php
$search = array(' ','"');
$replace = array('+','%22');
$subject = $q;
$myurl = str_replace($search, $replace, $subject);
include 'simple_html_dom.php';
$html = file_get_html("http://www.google.com/search?hl=en&q=".$myurl."&aq=f&oq=");
$v = array();
foreach($html->find('div[class="s"]') as $e) {
$v[] = substr($e->plaintext, 0, 200);
}
$v = implode("", $v);
?>
to get all the decriptions from googles results page and input it into my meta tag.
So if you searched "Big Dog" on Google (http://www.google.com/search?hl=en&q=big+dog&aq=f&oq=) my meta tag would display
<meta name="description" content="Big Dog - Big Dog Motorcycles is the leading producer of custom, American V-twin motorcycles. Five models, each powered by a 117 cubic inch engine, set a new standard ...www.bigdogmotorcycles.com/ - 11k - CacheBigDog is the alpha male of the Boston Dynamics family of robots. ... BigDog is the size of a large dog or small mule, measuring 1 meter long, ...www.bostondynamics.com/content/sec.php?section=BigDogBig Dog · Little Dog · Rise · Boston Dynamics - Click to return to home page. products · Robotics · about us · contact. BigDog Sets World Record! ...www.bostoBig Dogs, Quality, value, and fun for the entire family. Since 1983. Big sizes available. Graphic T-Shirts. Show stock quote for WALKwww.bigdogs.com/ - 8k - Cached - Similar pagesFeb 26, 2009 ... If you were freaked out by the spooky Big Dog quadruped robot, you are going to love seeing it in action alongside US Army soldiers, ...gizmodo.com/5160863/big-dogs-us-army-antics-keeUpdate If you were amazed by this don't miss the hilarious spoof It's even better Boston Dynamics keeps working on.gizmodo.com/368651/new-video-of-bigdog-quadruped-robot-is-so-stunning -its-spBasic English grammar designed for beginning students and as a quick review, with interactive online exercises. Un sitio para aprender lo mínimo necesario ...aliscot.com/bigdog/ - 14k - Cached - Similby Big Dog on Mar 18, 2009 at 22:34 Political Leave a comment ..... Big Dogs House is proudly powered by WordPress | Entries (RSS) and Comments (RSS) ...www.onebigdog.net/ - 67k - Cached - Similar pa">
What I am trying to do now that I have acheive the results I was looking for is crop this text own to say 400 characters.
Can anyone help?
Tim..