Guten Abend nun ja mehr oder weniger beschäftigt mich seit einem ganzen Wochenende ein kleines aber feines Problem.
Ich möchte per Php einen gewissen Teil, einer Webseite auslesen und den ausgelesenen Text auf meiner Seite wieder geben.
Habe das ganze Wochenende rum probiert und dieser funktionierende Code für die ersten zeilen von dem start tag<b> (content)bis zum schliessen durch </b> ist dabei herausgekommen:
PHP
<?php
$source = file_get_contents('http://website.informer.com/google.de');
preg_match("/[b](.+?)<\\/b>/", $source, $get);
print($get[1]);
?>
jedoch stehe ich nun wie der Ochse vorm Berg .
Die Pregmatch einstellungen gelingen mir partotut nicht, ich benötige die Infos zwischen
nr1:
HTML
<div class="data down"><img src="/images/icons/globe-sm.jpg" alt="Global" style="margin-bottom:-2px;">Info
</div>
nr.2
<div class="data"><a href="/site/linksin/google.de">info</a></div>
nr3.
<div class="content1" style="width: 322px;"><h2>Info</h2><p><span class="Fast">Info</span> (In,fo), Inof% .</p><p class="help">Info: Info.</p></div>
nr4.
<table class="dataTable" width="100%" cellpadding="0" cellspacing="0" border="0"><tbody><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr><tr><td class="count">Info</td><td><span class="searchLink" p="trafkey" r="site_siteinfo" s="google.de">Info</span></td><td class="number">Info%</td></tr></tbody></table>
Alles anzeigen
Ja jemand eine fixe Idee etwas einfach erklärendes oder einen schnellen schnipsel?Bin fürjede Hilfe dankbar.