<< < 14 15 16 17 18 19 20 21 22 23 24 > >>   Sort: Date

Hello-2.0.epub Displayed in Calibre
How to display Hello-2.0.epub in Calibre? Once you have Hello-2.0.epub created, you can follow this tutorial to open and read it in Calibre. 1. Search and run Calibre on your Windows computer. You see the Calibre main screen. 2. Click "Add books" icon. You see the open file screen. 3. Locate and sel...
2021-04-15, 1729🔥, 0💬

Atom Specification - RFC 4287
Where to find tutorials on Using RSS XML Schema? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using RSS XML Schema: Atom Document Structure Atom Feed Files Are XML Documents Atom Element Types: "feed" and "entry" Atom "feed" Element Atom "fe...
2017-09-28, 1727🔥, 0💬

Order of Array Values in PHP
How the Values Are Ordered in an Array in PHP? PHP says that an array is an ordered map. But how the values are ordered in an array? The answer is simple. Values are stored in the same order as they are inserted like a queue. If you want to reorder them differently, you need to use a sort function. ...
2017-01-29, 1726🔥, 0💬

Number of Rows Affected by a SQL Statement in PHP
How To Get the Number of Rows Selected or Affected by a SQL Statement in PHP? There are two functions you can use the get the number of rows selected or affected by a SQL statement: mysql_num_rows($rs) - Returns the number of rows selected in a result set object returned from SELECT statement. mysql...
2016-10-20, 1724🔥, 0💬

Edit API Operation Policy
What are steps to edit policy of an Azure API Operation? For each operation you created in your API, a default policy coded is added. If you want to view and edit policy statements to be executed between the Azure API and the backend service, you can follow this tutorial: 1. Go to the publisher dash...
2018-03-10, 1722🔥, 0💬

Understanding and Managing Cookies in PHP
Where to find tutorials on how to manage Cookies in PHP? A collection of tutorials to answer many frequently asked questions how to manage Cookies in PHP. Clear explanations and tutorial exercises are provided on setting and receiving cookies, creating and removing persistent cookies, specifying dom...
2016-11-05, 1720🔥, 0💬

What Is Python Module 'requests'
What Is Python module "requests"? "requests" is a Python external module that allows you to send organic, grass-fed HTTP/1.1 requests, without the need for manual labor. There’s no need to manually add query strings to your URLs, or to form-encode your POST data. Main features of "requests" module: ...
2018-09-01, 1719🔥, 0💬

XHTML 'meta' Elements Not Closed
What Happens If an XHTML "meta" Element Is Not Closed? Meta tags, link tags and base tags must be closed in XHTML documents. If you forget to close them like the HTML format, you will get validation errors. Try the following tutorial sample XHTML document on http://validator.w3.org/ to see what type...
2017-06-28, 1718🔥, 0💬

Simple EPUB Reader Failed on EPUB 2.0
Why Simple EPUB Reader is not able to wrap content into pages on "The Metamorphosis" EPUB 2.0 book? Simple EPUB Reader does not support all features of the EPUB 2.0 specification. For example: 1. Run "Simple EPUB Reader" and open "The Metamorphosis" EPUB book. 2. Turn to "CHAPTER I". You see the con...
2018-06-27, 1714🔥, 0💬

Hello-3.1.epub - Navigation File: navigation.xhtml
How to create a navigation file like navigation.xhtml for an EPUB 3.1 book? At least one navigation file, like navigation.xhtml, is required for an EPUB 3.1 book in the book ZIP container. It provides navigation information like a table of contents of the book. Here is the requirement on a navigatio...
2021-08-11, 1711🔥, 0💬

Hello-3.1.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 3.1 book? At least one content file, like content.xhtml, is required for an EPUB 3.1 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...
2021-08-11, 1711🔥, 0💬

PHP Configuration Setting File
Where Are PHP Configuration Settings Stored? PHP stores configuration settings in a file called php.ini in PHP home directory. You can open it with any text editor to your settings.     ⇒ Running a PHP Script ⇐ Verifying PHP Installation ⇑ Downloading and Installing PHP ⇑⇑ PHP Tutorials
2016-10-13, 1710🔥, 0💬

Verifying PHP Installation
How To Verify Your PHP Installation? PHP provides two execution interfaces: Command Line Interface (CLI) and Common Gateway Interface (CGI). If PHP is installed in the \php directory on your system, you can try this to check your installation: Run "\php\php -v" command to check the Command Line Inte...
2016-10-13, 1704🔥, 0💬

'requests' Module - HTTP for Humans
Where to find tutorials on Python "requests" Module? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Python "requests" Module. What Is Python Module 'requests' Installing 'requests' Module Sending an HTTP Request with 'requests' requests.models...
2018-09-01, 1703🔥, 0💬

Hello-3.1.epub Displayed in Calibre
How to display Hello-3.1.epub in Calibre? Once you have Hello-3.1.epub created, you can follow this tutorial to open and read it in Calibre. 1. Search and run Calibre on your Windows computer. You see the Calibre main screen. 2. Click "Add books" icon. You see the open file screen. 3. Locate and sel...
2019-01-12, 1698🔥, 0💬

re.sub() - Substitute Matches with String
How to substitutes matches of a regular expression in a target string with another string using re.sub()? The re.sub() function allows you to substitute (or replace) matches of a given regular expression in match the beginning part of a target string with of a given regular expression. import re f =...
2018-10-19, 1695🔥, 0💬

Creating Nested HTML Tables
How To Create Nested Tables? You can create nested tables by including a child table inside a cell of the parent table. Below is a tutorial example of nested tables: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/D TD/...
2017-04-22, 1695🔥, 0💬

Working with Directories and Files in PHP
Where to find tutorials on how to Work with Directories and Files in PHP? A collection of tutorials to answer many frequently asked questions on how to Work with Directories and Files in PHP. Topics included in this collection are: Creating a Directory in PHP Removing an Empty Directory in PHP Remov...
2016-11-24, 1695🔥, 0💬

Finding a Substring in PHP
How to Find a Substring from a Given String? To find a substring in a given string, you can use the strpos() function. If you call strpos($haystack, $needle), it will try to find the position of the first occurrence of the $needle string in the $haystack string. If found, it will return a non-negati...
2016-10-13, 1693🔥, 0💬

View RSS Feeds with Mozilla Firefox
How to View RSS Feeds with Mozilla Firefox? If you want to view RSS Feeds with Mozilla Firefox, you can follow this tutorial: 1. Launch Mozilla Firefox 55. 2. Enter the following in the URL input box: http://dev.fyicenter.com/rss_x ml.php3. Press "Enter" key. You see the RSS feed items displayed in ...
2017-11-02, 1691🔥, 0💬

Splitting a String into an Array in PHP
How To Split a String into an Array of Substring in PHP? There are two functions you can use to split a string into an Array of Substring: explode(substring, string) - Splitting a string based on a substring. Faster than split(). split(pattern, string) - Splitting a string based on a regular express...
2016-12-28, 1687🔥, 0💬

Defining a User Function in PHP
How To Define a User Function? in PHP? You can define a user function anywhere in a PHP script using the function statement like this: "function name() {...}". Here is a PHP script example on how to define a user function: &lt;?php function msg() { print("Hello world!\n"); } msg(); ?&gt; Thi...
2016-12-28, 1687🔥, 0💬

HTML Tables and Table Cells
Where to find tutorials of introduction to HTML Tables and Table Cells? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML Tables and Table Cells. Clear answers are provided with tutorial exercises on table elements like: tabl...
2017-05-20, 1682🔥, 0💬

What Is a Session ID in PHP
What Is a Session ID in PHP? A session ID is an identification string of a session. Since there might be multiple visitors coming to your Web site at the same time, the PHP engine needs to maintain multiple sessions concurrently. Session IDs are created and maintained by the PHP engine to identify s...
2016-10-26, 1682🔥, 0💬

<< < 14 15 16 17 18 19 20 21 22 23 24 > >>   Sort: Date