I have a book in. txt
I managed to open it to read it all, but about 40 pages
I used the following code to open the book:
all right, this is very good.
and now, how to paging page, each 370 words / page?
sorry for my bad english and thanks for responses
I managed to open it to read it all, but about 40 pages
I used the following code to open the book:
PHP Code:
$file="MyBook.txt";
$open=fopen($file, "r");
$raed=fread($open, filesize($file));
echo nl2br ($read);
and now, how to paging page, each 370 words / page?
sorry for my bad english and thanks for responses
Comment