<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   Sort: Date

Creating a Directory in PHP
How To Create a Directory in PHP? You can use the mkdir() function to create a directory. Here is a PHP script example on how to use mkdir(): &lt;?php if (file_exists("/temp/download") ){ print("Directory already exists.\n"); } else { mkdir("/temp/download"); print("Directory created.\n"); } ?&a...
2016-11-24, 2147🔥, 0💬

What Is EPUB 3.0 Specification
What Is EPUB 3.0 Specification? EPUB 3.0 Specification is the 3rd major release of EPUB specification. EPUB 3.0 Specification was released on October 11, 2011. and consists of 5 documents: The EPUB 3 Overview - Provides an informative overview of EPUB and a roadmap to the rest of the EPUB 3 document...
2018-11-17, 2145🔥, 0💬

Differences between RSS 2.0 and Atom 1.0
What Are Main Differences between RSS 2.0 and Atom 1.0? Main differences between Atom 1.0 and RSS 2.0 are: Atom has separate "summary" and "content" elements, while RSS only has one "description" element. Atom standardizes auto-discovery in contrast to the many non-standard variants used with RSS 2....
2017-12-13, 2145🔥, 0💬

HTML http-equiv 'meta' Tag/Element
What Is an HTML http-equiv "meta" Tag/Element? a http-equiv "meta" element is a special "meta" element that provides information equivalent to HTTP headers. A http-equiv "meta" element must include the "http-equiv" attribute as, http-equiv="Content-Type". Here is some good examples: &lt;meta htt...
2017-06-23, 2142🔥, 0💬

View RSS Feeds with IE (Internet Explorer)
How to View RSS Feeds with IE (Internet Explorer)? If you want to view RSS Feeds with IE (Internet Explorer), you can follow this tutorial: 1. Launch IE (Internet Explorer) 11. 2. Enter the following in the URL input box: http://dev.fyicenter.com/rss_x ml.php3. Press "Enter" key. You see the RSS fee...
2017-10-16, 2139🔥, 0💬

EpubCheck 4.0.2 --json Option
What is EpubCheck 4.0.2 "--json" Option? EpubCheck 4.0.2 "--json" option allows you to generate a JSON output file containing all properties of the EPUB book. You can try it on Hello-3.0.epub: C:\fyicenter&gt; java -jar epubcheck-4.0.2\epubcheck.jar --json Hello.json Hello-3.0.epub No errors or ...
2018-11-17, 2137🔥, 0💬

Setting a Persistent Cookie in PHP
How To Set a Persistent Cookie in PHP? If you want to set a persistent cookie, you can use the setcookie() function with an extra parameter to specify its expiration time. To follow sample script sets 2 persistent cookies to be expired within 7 days: setcookie("LoginName","FYICent er");setcookie("Pr...
2016-11-04, 2127🔥, 0💬

EPUB 2.0 Metadata - dc:description Element
What is EPUB 2.0 Metadata "dc:description" Element? EPUB 2.0 Metadata "dc:description" is an optional metadata element to specify a long description of the EPUB 2.0 book. Here is a good example of a "dc:description" metadata element &lt;dc:description&gt; "Row,Row, Row Your Boat" is a popula...
2019-01-26, 2124🔥, 0💬

Setting session.gc_maxlifetime Properly in PHP
How To Set session.gc_maxlifetime Properly in PHP? As you know that session.gc_maxlifetime is the session value timeout period. You should set this value based on the usage pattern of your visitors. Here are some suggestions: # Set it to 20 minutes for a normal Web site: session.gc_maxlifetime = 120...
2016-10-24, 2122🔥, 0💬

View EPUB 3.0 Metadata List with Calibre
How to see more EPUB 3.0 metadata list with Calibre? You can follow this tutorial to view EPUB 3.0 metadata list with Calibre. 1. Click Row-Your-Boat-3.0.epub to download this sample EPUB 3.0 book. 2. Add Row-Your-Boat-3.0.epub to Calibre book library. You see some EPUB 3.0 metadata displayed below ...
2018-04-28, 2120🔥, 0💬

Atom Element Types: "feed" and "entry"
What are main Atom element types? There are 2 main element types defined for Atom feed files: Atom Feed Element - Representing an Atom feed, including metadata about the feed, and some or all of the entries associated with it. Its root element is the &lt;feed&gt; element. Atom Entry Element ...
2017-12-09, 2114🔥, 0💬

Creating a Database Table to Store Files in PHP
How To Create a Table To Store Files in PHP? If you using MySQL database and want to store files in database, you need to create BLOB columns, which can holds up to 65,535 characters. Here is a sample script that creates a table with a BLOB column to be used to store uploaded files: &lt;?php $co...
2016-10-14, 2112🔥, 0💬

Filtering Out Empty Files in PHP
Why Do You Need to Filter Out Empty Files in PHP? When you are processing uploaded files, you need to check for empty files, because they could be resulted from a bad upload process but the PHP engine could still give no error. For example, if a user typed a bad file name in the upload field and sub...
2016-10-14, 2108🔥, 0💬

Using an Array as a Stack in PHP
How To Use an Array as a Stack in PHP? A stack is a simple data structure that manages data elements following the first-in-last-out rule. You use the following two functions together to use an array as a stack: array_push($array, $value) - Pushes a new value to the end of an array. The value will b...
2017-01-11, 2103🔥, 0💬

"MyLibApp.vb" - Call VB Class from Library
How to call a function from a VB class provided in a library? If you want to call a function from a VB class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp.v...
2017-08-13, 2101🔥, 0💬

3Pigs5-3.0.epub - Title Page and TOC
How to add a title page and a table of content page to my EPUB book? If you want to add a title page and a table of content page to your EPUB 3.1 book, you can follow this tutorial. 1. Create a title page in an XHTML file like Title-Page.xhtml: &lt;?xml version="1.0" encoding="utf-8"?&gt; &a...
2018-08-14, 2097🔥, 0💬

Create Visual Basic Project in Visual Studio 2017
How to Create a Visual Basic Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual Basic program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &...
2023-09-16, 2096🔥, 0💬

Adobe Digital Editions Failed to Open EPUB
Why Adobe Digital Editions fails to open an EPUB book file? "Adobe Digital Editions 4.5.7" does not work on Windows 7 computers. For example, Run "Adobe Digital Editions" on Windows 7 computer. You the start screen. 2. Click "Getting Started with Adobe Digital Edition" EPUB book. You see the followi...
2019-01-01, 2076🔥, 0💬

Copying an Array in PHP
Can You Copy an Array in PHP? You can create a new array by copying an existing array using the assignment statement. Note that the new array is not a reference to the old array. If you want a reference variable pointing to the old array, you can use the reference operator "&amp;". Here is a PHP...
2017-02-03, 2075🔥, 0💬

EPUB 3.0 Package Metadata
Where to find tutorials on EPUB 3.0 Package Metadata? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on EPUB 3.0 Package Metadata. What Is EPUB 3.0 Package Metadata EPUB 3.0 Metadata - dc:identifier Element EPUB 3.0 Metadata - dc:title Element EP...
2018-06-01, 2074🔥, 0💬

Hello-3.0.epub - Package File: package.opf
How to create a package file like package.opf for an EPUB 3.0 book? At least one package file, like package.opf, is required for an EPUB 3.0 book in the book ZIP container. It defines required meta data and specifies 2 required content files. Here is the requirement on a package file: 1. A package f...
2018-11-29, 2073🔥, 0💬

Supporting a Multiple-Page Form in PHP
How To Support Multiple-Page Forms in PHP? If you have a long form with a lots of fields, you may want to divide the fields into multiple groups and present multiple pages with one group of fields on one page. This makes the a long form more user-friendly. However, this requires you to write good sc...
2016-11-05, 2063🔥, 0💬

Hello-3.0.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 3.0 book? At least one content file, like content.xhtml, is required for an EPUB 3.0 book in the book ZIP container. It provides the content of the book. Here is the requirement on a content file: 1. A content file must be named with .xhtml...
2018-11-29, 2062🔥, 0💬

Joining Keys and Values into an Array in PHP
How To Join a List of Keys with a List of Values into an Array in PHP? If you have a list keys and a list of values stored separately in two arrays, you can join them into a single array using the array_combine() function. It will make the values of the first array to be the keys of the resulting ar...
2017-01-11, 2060🔥, 0💬

<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   Sort: Date