how can I get the html script of a webpage using PHP?

Nikki D

New member
i would like to keep the script of a webpage in a php string. i mean, the script you see if you right click on you browser and you select 'view source'. Any help will be most appreciated :-)
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
You need to use the PHP code "file_get_contents()" where in the parenthesis has the website URL.
Example:
$html = file_get_contents("www.somesite.com");
//Then use some filters

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
Back
Top