PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Nurul Ferdous   html2pcl   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example usage
Class: html2pcl
Convert HTML to PCL
Author: By
Last change: Listing priority and accessibility updated
Date: 15 years ago
Size: 325 bytes
 

Contents

Class file image Download
<?php
/*
 * Usage of html2pcl class
 */
require_once('class.html2pcl.php');
$obj = new Html2pcl;
//please don't use $htmlFileName without "http://www." rather use like this "http://www.google.com"
//please use $pclFileName without the extension like "google"
$obj->makePCL("http://www.google.com", "google");

?>