Code: Select all
// Extract pricing and forum of top result
// Used the IE Element Wizard to extract data here
IEGetTagsByAttrib>{"http://www.recyclingmonster.de/verkaufen/buecher"},SPAN,,T,valueArray
//top result is valuearray_1
Let>offer=valueArray_1
//format is: forum 1,00€
// (first is forum, second price)
Separate>forum,price_parts,€
Let>main_price=price_parts_1
//update price in database
Let>SQL=UPDATE tblBuchdaten SET ankaufname='%main_price%' WHERE ArticleID='%article_id%';
DBExec>dbH,SQL,dbRes
How to?