Posted by: ranacse05 on: April 21, 2008
I was just reading PHP and got a awesome function named file_get_contents() it returns the whole file as a string.But the special thing is it can read web sites too .For example here is a code
$data = @file_get_contents(‘http://www.google.com’);
echo $data;
$file = fopen(‘google.txt’,’w’);
fwrite($file,$data);
First line will get the contents of www.google.com
Then it’ll show the [...]
Posted by: ranacse05 on: April 21, 2008
Few days ago I was working on JobberBase so I had to visit www.JobberBase.com .Its a nice site .And the presentation is just awesome. One thing make me surprised that is the sliding page. U can see the demo here. Its using jquery.
Recent Comments