Jump to content

search&copy


sungo

Recommended Posts

Hi there, I am wondering about searching through a websites content and snipping such things as news out to be displayed on my website. I'm someone new to php so I looked around for some scripts to tinker with. The only one I could find was:

[code]
<?php
$url = 'http://txt.lyricz.info/test.cgi/rip/dan.txt';
$lines_array = file($url);
$lines_string = implode('', $lines_array);
eregi("<pre>(.*)</pre>", $lines_string, $head);
$lines = split("\n", $head[0]);
$x = count($lines);
for ($i=0;$i<$x;$i++) {
  echo $lines[$i];
  echo "\n";
  }
?>
[/code]

As far as I can see all this does is look at the source of $url and clip out the stuff in between < pre> and < /pre>. The one problem with this is that < pre> and < /pre> are still included in the snippit. Also I cannot seem to get this code to work for other variations other then html tags (ie: < pre>, < center>, < head>;, < body>, etc.). I was wondering if there was a better way to go about searching through a websites content and snipping out a bit of info to be displayed elsewhere?

Ideally I would like to be able to snip between things such as, " ?sn= " and " '); "

Thanks in advance!
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.