Page 1 of 1

Get HTML code form a PHP made page

Posted: Wed Nov 12, 2003 3:42 pm
by javito
I need to get the html code from a php link.
I mean, i have this page made with php and i need to retrieve de html code and save itt to a variable.

For example:

Code: Select all

<?php
$data = navigate("data/index.php?action=list");
?>
I invented "navigate" that's what i'm looking for. Thanx!

Posted: Wed Nov 12, 2003 4:35 pm
by qads
check out [php_man]fopen[/php_man], the link has few samples too.

Posted: Wed Nov 12, 2003 5:04 pm
by javito
thanx for the fast answer!