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

Replacing Characters in a String in PHP
How To Replace a Group of Characters by Another Group? While processing a string, you may want to replace a group of special characters with some other characters. For example, if you don't want to show user's email addresses in the original format to stop email spammer collecting real email address...
2016-10-13, ∼2348🔥, 0💬

HTML 'sub' and 'sup' Tag/Element
What Are HTML "sub" and "sup" Tags/Elements? "sub" and "sup" elements are inline elements that you can use to specify text to be treated as subscript and superscript respectively. Here are basic rules about "sub" and "sup" elements: "sub" and "sup" elements are inline elements. "sub" and "sup" eleme...
2017-04-28, ∼2344🔥, 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, ∼2344🔥, 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, ∼2343🔥, 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, ∼2338🔥, 0💬

Build Authorization Code Flow with Azure AD v2
How to implement the OpenID Authorization Code Flow with Azure AD v2.0 service? If you want to implement the OpenID Authorization Code Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v2.0 Sign-on authentication request: Register your Web ...
2019-03-27, ∼2337🔥, 0💬

Introduction of JSON
Where to find tutorials in understanding what is JSON? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is JSON. What Is JSON? JSON Text String Example JSON Format Syntax Examples of Invalid JSON Values   ⇒ What Is JSON? ⇐ JS...
2023-04-25, ∼2336🔥, 0💬

Start Python in Interactive Mode
How to Start Python in Interactive Mode on my Windows computer? You can start Python in interactive mode on your Windows computer in several ways: 1. "python" in command window - In a command window, enter the "python" command. If the python installation folder is in the PATH environment variable, t...
2023-01-06, ∼2335🔥, 0💬

What Is OpenID Connect
What Is OpenID Connect? OpenID Connect is a newer version of OpenID. OpenID Connect 1.0 was released in February 2014. OpenID and OpenID Connect releases: Version Release date OpenID Connect 1.0 February 4, 2014 OpenID 2.0 December 5, 2007 OpenID 1.1 May 2006 OpenID 1.0 Here is a picture of OpenID C...
2019-01-20, ∼2335🔥, 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, ∼2334🔥, 0💬

JSON.parse() Function in JavaScript
Where to get the detailed description of the JSON.parse() Function in JavaScript? Here is the detailed description of the JSON.parse() Function in JavaScript. Description - The JSON.parse() function parses a JSON string, constructing the JavaScript value or object described by the string. An optiona...
2023-04-13, ∼2334🔥, 0💬

Fabric CA User’s Guide
Where is the Fabric CA User’s Guide? The Fabric CA User’s Guide is provided at: hyperledger-fabric-ca.readthed ocs.io/en/release-1.4/users-gu ide.html. The Fabric CA User’s Guide provides information on the following topics: Overview Getting Started Prerequisites Install Explore the Fabric CA CLI Co...
2019-10-18, ∼2333🔥, 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, ∼2333🔥, 0💬

Setup Visual Studio 2017 for Visual C++
How to setup Visual Studio 2017 for Visual C++? I have install it with Visual Studio Installer. If you have the Visual Studio 2017 installed, you can follow these steps to setup Visual Studio 2017 for Visual C++. 1. Run "All Programs &gt; Visual Studio 2017". You see the Visual Studio developer ...
2023-12-10, ∼2331🔥, 0💬

Test Azure AD B2C User Flow
How to test a user flow defined as a policy in my Azure AD B2C directory? After you have defined a user flow in a policy in your Azure AD B2C directory, you can test it before you connect it to your application. 1. Sign in to the Azure portal as the global administrator of your Azure AD B2C tenant. ...
2019-02-18, ∼2328🔥, 0💬

Entering Comments into HTML Documents
How To Enter Comments into HTML Documents? If you want to enter comments into an HTML document, you can use the comment tag: "&lt;!-- ... --&gt;". Here are some good examples of HTML comments: &lt;!-- Start north banner --&gt;... &lt;script type="text/javascript"&gt; &lt;...
2024-03-23, ∼2326🔥, 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, ∼2325🔥, 0💬

Test API Operation Request Body Examples
How to test request body examples on my Azure API operation? If you have added some request body examples to your Azure API operation, you can follow this tutorial to test them. 1. Go to the developer portal as a publisher administrator. 2. Open the "First API" and open the operation "Add new user"....
2018-03-28, ∼2323🔥, 0💬

Start Hyperledger Composer Playground
How to Start the Hyperledger Composer Playground? You can follow this tutorial to start the Hyperledger Composer Playground. 1. Run Web browser and go to: composer-playground.mybluemix. net. You see the welcome page. 2. Click on "Let's Blockchain!". You see the playground home page. 3. Now you can s...
2021-12-28, ∼2322🔥, 0💬

Writing HTML Element Attributes
How To Write Element Attributes Properly? If an attribute is allowed for an XHTML element, you must write the attribute inside the opening tag of this element. Here are some rules on writing element attributes: An attribute must have a name and a value, separated by the equal sign "=". An attribute ...
2024-04-07, ∼2320🔥, 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, ∼2320🔥, 0💬

Using MySQL Command Line Interface in PHP
How To Use MySQL Command Line Interface in PHP? MySQL server comes with a command line interface, which will allow you to operate with the server with SQL statements and other commands. To start the command line interface, you can run the \mysql\bin\mysql program. The tutorial exercise below shows y...
2016-10-22, ∼2319🔥, 0💬

register-user.js - Register New User
How to write a Node.js script to Register New Users to ca.example.com? If you are an administrator on ca.example.com, you can register other new users to ca.example.com. Here is sample Node.js script, register-user.js, that uses your "admin" identity from the local wallet to register a new user to o...
2019-04-22, ∼2318🔥, 0💬

Function with Undefined Number of Arguments in PHP
How To Define a Function with Any Number of Arguments? in PHP? If you want to define a function with any number of arguments, you need to: Declare the function with no argument. Call func_num_args() in the function to get the number of the arguments. Call func_get_args() in the function to get all t...
2016-12-04, ∼2318🔥, 0💬

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