Hello,
I need to build into my php application some javascript elements. My application check a given webpage for some information - lets suppose we have to check if there is a 'special link' on a 'special webpage'. I know how to parse this webpage using php and to check for the special link on it. The problem is that if I use a server side platform like php the 'special website' will know that I always do checking from the same IP address and my website will get banned.
So I need a client side platform as javascript. I want to implement a javascript function into my website. If a user uses my website to do 'the checking' he will open my check webpage. When the check page loads complete a javascript function has to start automatically. This javascript function has to make the checking process (on behalf of the user IP address) and inform the user about the result.
The most important is the checked special webpage to do not know about my website at all.
Is it possible to do this?
Thank you.
I need to build into my php application some javascript elements. My application check a given webpage for some information - lets suppose we have to check if there is a 'special link' on a 'special webpage'. I know how to parse this webpage using php and to check for the special link on it. The problem is that if I use a server side platform like php the 'special website' will know that I always do checking from the same IP address and my website will get banned.
So I need a client side platform as javascript. I want to implement a javascript function into my website. If a user uses my website to do 'the checking' he will open my check webpage. When the check page loads complete a javascript function has to start automatically. This javascript function has to make the checking process (on behalf of the user IP address) and inform the user about the result.
The most important is the checked special webpage to do not know about my website at all.
Is it possible to do this?
Thank you.
Comment