Jump to content

tobz

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

tobz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, yes, should have made that clear, when I say for price comparison, it's for my own personal use. I'm trying to make my life easier when comparing prices across sites in the run-up to Xmas. I have similar code working checking prices on other sites but can't figure out what's happening with this particular piece of code/URL. Thanks.
  2. Hi I'm trying to use preg_match to scrape the price of a product from a web site to do a price comparison but, for some reason that I can't work out, it is not returning the expected result. Before you look at this, the URL is an "adult toys" site (not pornographic), so please don't look if that offends you! OK, the URL is http://www.simplypleasure.com/products/novelties-340/chocolate-strawberry-body-pens-40g-each-3896.aspx (don't ask!) My code is as follows: $URL5 = "http://www.simplypleasure.com/products/novelties-340/chocolate-strawberry-body-pens-40g-each-3896.aspx"; $PAGE5 = file_get_contents($URL5); if (preg_match('/<span class=.price.>£(\d+\.\d+)<\/span>/',$PAGE5,$matches)) $PRICE[5] = $matches[1]; else $PRICE[5] = 'na'; I have tested my pattern match via this website http://www.functions-online.com/preg_match.html against the source code of the URL and it correctly returns $matches[1] as 6.00 (need to change £ to £ in that checker to get it to work). I thought perhaps file_get_contents was returning spurious code but I wrote the results to a text file and it seems to be the correct source code. Any ideas welcomed, thanks.
×
×
  • 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.