<?php
// Get the HTML source of google
$count = file ('http://www.google.com/');
// Loop through our array
foreach ($count as $line_num => $line)
{
echo "Line #{$line_num} : " . htmlspecialchars($line) . "<br>\n";
}
?>
// Get the HTML source of google
$count = file ('http://www.google.com/');
// Loop through our array
foreach ($count as $line_num => $line)
{
echo "Line #{$line_num} : " . htmlspecialchars($line) . "<br>\n";
}
?>
0 comments:
Post a Comment