Jump to content

rstandley

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

rstandley's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi Guys, I have been racking my brain all of today trying to get this to work, im pretty new to it all! What im trying to do is use the following code whcih works fine and returns all the correct information in an Array, and insert this into a MySQL DB. Can anyone point me in the right direction? foreach($html->find('div.rsshelper') as $article) { $item['title'] = $article->find('div.prodlistboxbg', 0)->plaintext; $item['link'] = $article->find('.prodimgurl', 0)->href; $item['image_url'] = $article->find('.image-thumb', 0)->src; $item['old_price'] = $article->find('span.text-pricestrike', 0)->plaintext; $item['current_price'] = $article->find('span.text-pricespecial', 0)->plaintext; $item['saving'] = $article->find('span.price-percentage', 0)->plaintext; $articles[] = $item; } print_r($articles); This is the code that generates the Array with the given data. I know how to connect to the DB but how do I get each row into each row of the DB? Thanks Rory
×
×
  • 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.