PHP Classes

File: example3.php

Recommend this page to a friend!
  Classes of Trev Tune   PHP Search Engine Crawler   example3.php   Download  
File: example3.php
Role: Example script
Content type: text/plain
Description: Simple source code viewer with syntax highling.
Class: PHP Search Engine Crawler
Crawl pages and extract links, images and metadata
Author: By
Last change: Changed type
Date: 10 years ago
Size: 320 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html>
<head>
<title>Simple Source Code Viewer</title>
</head>
<body>
<?php

/*Package search engine crawler
*
*author Trev Tune */

include 'crawler.class.php';

$crawler=new crawler("http://www.phpclasses.org");

$html=$crawler->html;
 
highlight_string($html);
?>
</body>
</html>