how do we can copy of the content of a web page with the
help og the URL and display them onto any other page
Answers were Sorted based on User's Feedback
Answer / nikesh
$content=file_get_contents("http://nikeshyadav.blogspot.com");
echo $content;
by this function u can copy and display of one webpage to
another
Check it at <a href="http://nikeshyadav.com/blog.php"
target="_blank" >http://nikeshyadav.com</a>
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / mishra ashutosh
Can be done by file_get_contents() and using CURL.
For fetching any particular part of it, parse the fetched information.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / uma
<iframe height="500%"
src =
"http://url"
width="100%">
</iframe>
Try using header to redirect...
pl correct me if u feel the ans is wrong:-)
| Is This Answer Correct ? | 2 Yes | 3 No |
Explain NULL?
Why session timeout is important?
is 'easyphp' is compelete technology to design a phpmysql site?
What is array filter php?
What is the static variable in function useful for?
What is a namespace in php?
How to implement a class named dragonball. This class must have an attribute named ballcount (which starts from 0) and a method ifoundaball. When ifoundaball is called, ballcount is increased by one. If the value of ballcount is equal to seven, then the message you can ask your wish is printed, and ballcount is reset to 0. How would you implement this class?
Can we extend final class in php?
How can I find what type of images that the PHP version supports?
How is it possible to return a value from a function?
How to check an key is exists in array?
How to access a Static Member of a Class in PHP?