PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I'm new to php and cannot seem to find how to display a page from a URL in PHP. For instance, I have my own wrappers coded and then in the code I have a URL, http://www.google.com.
So when I display my page it would show my customized wrappers and then it would display the google page.
Is this scenario possible? If possible, how do I do it?
you can use [php_man]file_get_contents[/php_man]() or [php_man]curl[/php_man] to get the remote pages.. then use some regular expressions or other string functions to get at the data contained in the rendered html..