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

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, 1894🔥, 0💬

Finding a Given Value in an Array in PHP
How To Find a Specific Value in an Array in PHP? There are two functions can be used to test if a value is defined in an array or not: array_search($value, $array) - Returns the first key of the matching value in the array, if found. Otherwise, it returns false. in_array($value, $array) - Returns tr...
2017-01-21, 1893🔥, 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, 1887🔥, 0💬

Minimum Requirement of EPUB 2.0.1 File
What Is the minimum requirement of an EPUB 2.0.1 file? If you want to build an EPUB file that meets the minimum requirements of EPUB 2.0.1 specification, you need to prepare the following: 1. A text file called "mimetype" with one line listed below. It specifies the mimetype of an EPUB 2.0.1 book fi...
2023-05-09, 1884🔥, 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, 1883🔥, 0💬

WPF App with VB Code in Visual Studio 2017
How to build a WPF application with VB code to control its behavior in Visual Studio 2017? After you have created your WPF application with XAML to define its UI elements, you can follow this tutorial to add VB code to control its behavior in Visual Studio 2017: 1. Create a "WPF App (.NET Framework)...
2023-09-16, 1882🔥, 0💬

JSON Validation at jsonlint.com
How to use the JSON Validation Tool at jsonlint.com? If you want to try the JSON Validation Tool at jsonlint.com, you can follow this tutorial: 1. Go to the The JSON Validator page at jsonlint.com. 2. Enter the following JSON text string in the text area: { "firstName": "John", "lastName": "Smith", ...
2023-09-05, 1881🔥, 0💬

View Atom Feeds with Mozilla Firefox
How to View Atom Feeds with Mozilla Firefox? If you want to view Atom 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/atom_ xml.php3. Press "Enter" key. You see the Atom feed items displayed...
2017-12-26, 1880🔥, 0💬

Using Atom Tools
Where to find tutorials on Using Atom Tools? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using Atom Tools: Atom Online Validators Atom Online Validator at w3.org Atom Validation Errors at w3.org View Atom Feeds with IE (Internet Explorer) G...
2018-01-06, 1878🔥, 0💬

EpubCheck 4.0.2 --out Option
What is EpubCheck 4.0.2 "--out" Option? EpubCheck 4.0.2 "--out" option allows you to generate an XML 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 --out Hello.xml Hello-3.0.epub No errors or warn...
2018-06-01, 1875🔥, 0💬

Call JSON.parse() with Reviver Function
What is a reviver function that you can provide the JSON.parse() function call? The reviver function is an event handler function that is called repeatedly whenever a JSON element is parsed during the execution of the JSON.parse() function. The reviver function must defined with the following signat...
2023-09-07, 1874🔥, 0💬

Function Returns Data by Value in PHP
How Values Are Returned from Functions? in PHP? If a value is returned from a function, it is returned by value, not by reference. That means that a copy of the value is return. Here is a PHP script on how values are returned from a function: &lt;?php $favor = "vbulletin"; function getFavor() { ...
2016-12-08, 1869🔥, 0💬

Console App with VC# Code in Visual Studio 2017
How to build a console application with Visual C# code in Visual Studio 2017? If you want to build a console application with Visual C# code in Visual Studio 2017, you can follow this tutorial 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &gt; Project...
2017-08-08, 1868🔥, 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, 1868🔥, 0💬

Hello-3.0.epub Displayed in Calibre
How to display Hello-3.0.epub in Calibre? Once you have Hello-3.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...
2018-11-11, 1867🔥, 0💬

What Is Fabric CA (Certificate Authority)
What is Fabric CA (Certificate Authority)? Fabric CA (Certificate Authority) is a component of Hyperledger Fabric platform that manages certificates for Hyperledger Fabric Network as a MSP (Membership Service Provider). Similar to a standard PKI CA server, Fabric CA provides features such as: Regist...
2024-05-11, 1866🔥, 1💬

💬 2024-05-11 69@~~linux-4131: Ok lmao

What Is .NET Framework
What Is .NET Framework? .NET Framework Microsoft that provides primarily a standard program execution environment and a standard library: Common Language Runtime (CLR) - An application virtual machine that provides services such as security, memory management, and exception handling. Any application...
2023-05-31, 1865🔥, 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, 1864🔥, 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, 1863🔥, 0💬

First Visual C# Program in Visual Studio 2017
Where to find tutorials on writing first Visual C# Program in Visual Studio 2017? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on writing first Visual C# Program in Visual Studio 2017? Create Visual C# Project in Visual Studio 2017 WPF App with...
2017-08-13, 1863🔥, 0💬

Interact with "fabcar" Chaincode on CLI
How to Interact "fabcar" Chaincode on CLI? After you started the WYFA network properly, you will have the "fabcar" chaincode running on "mychannel" on the peer0.org1.example.com peer container. You can now interact with the "fabcar" chaincode from the CLI container as shown below. 1. Connect to CLI ...
2020-02-20, 1861🔥, 0💬

MIME Type Definition for RSS Files
What Is the MIME Type Definition for RSS Files? Atom files have its own MIME type definition as: MIME type: application/rss+xml File extension: .rss, .xml Type of format: Syndication Extended from: XML   ⇒ Download RSS Specification ⇐ Icon for RSS Syndication ⇑ Introduction of RSS ⇑⇑ RSS FAQ and T...
2017-12-21, 1861🔥, 0💬

JSON Schema Validation for JSON String Values
What validation keywords I can use in JSON Schema to specifically validate JSON String values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Strings values. They are not applied if the JSON instance is not a JSON String. "maxLength" - ...
2017-09-01, 1859🔥, 0💬

Local Variables in a Function in PHP
What Is the Scope of a Variable Defined in a Function? in PHP? The scope of a local variable defined in a function is limited with that function. Once the function is ended, its local variables are also removed. So you can not access any local variable outside its defining function. Here is a PHP sc...
2016-12-08, 1859🔥, 0💬

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