aiuto online manga reader
Salve a tutti, sono un nuovo uttente e ho appena cominciato ad usare html e poco poco di php, ho creato un sito su altervista e vorrei sapere come inserire questo file (dovrebbe essere uno script per leggere manga online) e dovrei anche modificare qualcosa ma non capisco cosa! qualcuno mi potrebbe spiegare con termini semplici cosa dovrei fare?
Codice PHP:
<?php
// URL where the script is installed, it must end with a slash
$omv_base_url = "http://localhost/omv/";
// page title
$omv_title = "Online Manga Viewer";
// supported image file types
$omv_img_types = array("jpg", "jpeg", "png", "bmp", "gif");
// chapters can be sorted by ascending or descending order
$omv_chapters_sorting = SORT_ASC; // SORT_ASC or SORT_DESC
// image auto-resizing
$omv_img_resize = true; // true or false
$omv_preferred_width = 800; // preferred width in pixels
// stylesheet name
$omv_theme = "default"; // theme's folder name
?>