PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Karl Holz   eKatab PHP ePub Reader   index.php   Download  
File: index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: eKatab PHP ePub Reader
Display ebooks in the epub format on Web pages
Author: By
Last change: Update of index.php
Date: 1 year ago
Size: 239 bytes
 

Contents

Class file image Download
<?php
include_once 'eKatab/eKatab.class.php';

$html = new jQuery_mobile();
$html->make_books(glob('Books/*.epub'), 'epub');
$html->make_books(glob('Books/*.ibooks'), 'ibooks');
#$html->make_books(glob('Books/*.ipa'), 'ipa');

echo $html;