View Single Post
  #4  
Old 10-28-2011, 03:43 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
You can use requesturl on the client-side.

PHP Code:
//#CLIENTSIDE

function onCreated() {
  
temp.req requesturl("http://www.google.com");
  
this.catchevent(temp.req"onReceiveData""onSiteDownloaded");
}

function 
onSiteDownloaded(obj) {
  echo(
"Site Data Size: " obj.fulldata.length());
  
// Full data will contain the html data and so on.

__________________
Quote:
Reply With Quote