Data Mining / Data/Website Scraping

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • shannonw@reynolds.com.au

    #1

    Data Mining / Data/Website Scraping

    Hi,

    I'm looking for a piece of software or coding that will let me post a
    form
    to another URL, accept the response, search it for a specific
    "success"
    string and then let me continue processing the rest of my program.

    I want to accept queries on behalf of my supplier, forward it to them
    behind
    the scenes, accept their response and display it within my website.

    Has anyone had any experience with this? Is there a simple, basic
    utility
    to let me do this?

    I was kind of hoping I could avoid developing it myself.

    Thanks
    Shannon

  • Jerry Stuckle

    #2
    Re: Data Mining / Data/Website Scraping

    shannonw@reynol ds.com.au wrote:
    Hi,
    >
    I'm looking for a piece of software or coding that will let me post a
    form
    to another URL, accept the response, search it for a specific
    "success"
    string and then let me continue processing the rest of my program.
    >
    I want to accept queries on behalf of my supplier, forward it to them
    behind
    the scenes, accept their response and display it within my website.
    >
    Has anyone had any experience with this? Is there a simple, basic
    utility
    to let me do this?
    >
    I was kind of hoping I could avoid developing it myself.
    >
    Thanks
    Shannon
    >
    Shannon,

    You'll probably have to do it yourself. But it shouldn't be too hard if
    your use Curl.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Akhenaten

      #3
      Re: Data Mining / Data/Website Scraping

      Has anyone had any experience with this? Is there a simple, basic
      utility
      to let me do this?
      >
      I was kind of hoping I could avoid developing it myself.
      >
      Thanks
      Shannon

      Seldom are you going to find something out there that lets you do
      *exactly* what you want so you'll more than likely have to code it
      yourself (or hire someone). What you're looking for though is very
      simple in nature:

      1. A form
      2. Post Form
      3. Search posted data
      4. do "this" with data

      Comment

      Working...