jay_kbvt said:
Hi,
Is there any way to download the dynamic content from a website and
store it to the local database......?
Except for the "store it to a local DB" part, your webbrowser does this
all the time -- actually, if you consider the local cache to be a "local
database", then it does that last part too!
You probably want to be more specific with the "download" part. Let's
say a dynamic website emits different content depending on what the IP
address of the client is (
http://www.whatismyip.com/ does this); what
behaviour do you expect from the downloaded content? It probably won't
respond to different IP addresses in the same way that the original site
does.
What if the website doesn't simply echo your IP back to you, but gives
you a MD5 hash of (your IP concatenated with the current time concatenated
with a secret password)? It'd be very difficult to get your downloaded
version to behave the same as the dynamic site without knowing that secret
password.
- Oliver