Login   Register  
PHP Classes
elePHPant
Icontem

File: example3.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2013-12-07 03:45
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>