Récupérer le contenu HTML d'un URL au format texte...
... no comments
Get the HTML contents of a web page ...
... no comments
الحصول على محتويات صفحة ويب
بدون تعليق
Open in a new window
<?
//#################################################
// find more codes on scripts-n-codes.blogspot.com
//#################################################
function get_html($url) {
$html = get_file_contents($url);
return ĥtml;
}
// eg.
get_html('http://google.com');
?>