<< < 28 29 30 31 32 33 34 35 36 37 38 > >>   ∑:1482  Sort:Date

Introduction of HTML
Where to find tutorials in understanding what is HTML? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is HTML. Clear answers are provided for frequently asked questions on what is HTML, HTML5, XHTML, Web, HTTP, XML, URL, URI...
2017-02-20, ∼2020🔥, 0💬

Dump Azure AD v1 Authentication Response
How to build a PHP script to dump Azure AD v1.0 Authentication Response? If you are use the Azure-AD-Authentication-Reques t-Test.htmltest Web form, you need to write a server side script to dump the Azure AD Authentication Response. Here is an example of PHP script, openID_receiver.php, that dumps ...
2022-05-01, ∼2019🔥, 0💬

Cookies Transported from Browsers to Servers in PHP
How Cookies Are Transported from Browsers to Servers in PHP? Cookies are transported from a Web browser to a Web server in the header area of the HTTP request message. Each cookie will be included in a separate "Cookie:" header line in the following format: GET / HTTP/1.1 Cookie: name1=value1 Cookie...
2016-11-02, ∼2017🔥, 0💬

RSS and Atom Aggregator on Windows
What Is an RSS and Atom Aggregator on Windows? A Windows RSS aggregator is a special RSS aggregator that you have download and install it on your Windows computer. Examples of Windows RSS aggregators are: FeedReader - A free open-source desktop aggregator that supports RSS and Atom formats. FeedRead...
2017-10-08, ∼2014🔥, 0💬

First Visual Basic Program in Visual Studio 2017
Where to find tutorials on writing First Visual Basic 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 Basic Program in Visual Studio 2017? Create Visual Basic Project in Visual Studio 2017 WPF...
2023-05-31, ∼2013🔥, 0💬

Azure AD B2C "id_token" from Google
Where to find an Azure AD B2C "id_token" example from Google as an external identity provider? Here is an Azure AD B2C "id_token" example from Google as an external identity provider: Header: { "typ": "JWT", "alg": "RS256", "kid": "X5eXk4xyojNFum1kl2Ytv8dlNP4-c 57dO6QGTVBwaNk"} Claims: { "exp": 1547...
2019-04-11, ∼2013🔥, 0💬

"fabric-nodeenv:latest not found" Error
How to resolve the "hyperledger/fabric-nodeenv:la testnot found" error? Based on discussions on the Internet, there is a something wrong in the Docker image repository for "hyperledger/fabric-nodeenv:la test"image. When you try to instantiate chaincode a Hyperledger Fabric network channel, a docker ...
2020-02-29, ∼2012🔥, 0💬

RSS "channel/image" Element
What is the RSS "channel/image" element? The RSS "channel/image" element is an optional sub element of the "channel" element to specify a GIF, JPEG or PNG image that can be displayed with the channel. The RSS "channel/image" element contains the following sub elements. url - REQUIRED. The URL of a G...
2017-11-11, ∼2011🔥, 0💬

Multiple JSON Schema Validation Keywords
How multiple Validation Keywords work in JSON Schema? Multiple Validation Keywords work in JSON Schema with the "AND" logic. The order of validation keywords is not important. In other words, all of them are applied individually to the JSON instance based their specified conditions. For example, the...
2017-08-25, ∼2009🔥, 0💬

Main Features on Visual Studio 2017 Start Page
What features are available on Visual Studio 2017 Start Page? After you started Visual Studio 2017 you the Start Page with the following features: 1. Top Menu - Allows you to access menu items through: File, Edit, View, Project, Debug, Team, Tools, Test, Analyze, Windows, and Help. 2. Search Box (ne...
2023-12-10, ∼2008🔥, 0💬

Create "Add to Bloglines" Button
How To Create an "Add to Bloglines" Button on Your Website? If you want to create an "Add to Bloglines" button your own Web site, you can follow this tutorial: 1. Create an RSS Atom 1.0 feed file for your site, and make it accessible with a URL. If the feed file is generated dynamically, take the UR...
2017-09-24, ∼2008🔥, 0💬

What Is Function
What Is Function in Python? A function, also called a method, in Python is a statement block waiting to be executed later with a function call expression. A function can have the following elements: Function name - A symbolic name that uniquely identifies this function within the context. Parameter ...
2017-09-12, ∼2007🔥, 0💬

Retrieving the Original Query String in PHP
How To Retrieve the Original Query String in PHP? If you have coded some values in the URL without using the standard form GET format, you need to retrieve those values in the original query string in $_SERVER['QUERY_STRING']. The script below is an enhanced version of processing_forms.php which pri...
2016-11-05, ∼2005🔥, 0💬

Defining an HTML Hyper Link
How To Define a Hyper Link? If you want to define a hyper link in your HTML document, you need to use an "a" element with the "href" attribute. Here are basic rules about defining a hyper link with "a" element: An "a" element with the "href" attribute defines a hyper link. The "href" attribute is us...
2017-07-15, ∼2004🔥, 0💬

Specifying Input Values for Radio Buttons in PHP
How To Specify Input Values for Radio Buttons in PHP? Radio buttons can be used in a form for two situations: As a single switch - One &lt;INPUT TYPE=RADIO ...&gt; tag, with no input value specified. When submitted with button pushed down, you will receive a value of "on". When submitted wit...
2016-11-13, ∼2004🔥, 0💬

Updating Existing Rows in PHP
How To Update Existing Rows in a Table in PHP? Updating existing rows in a table requires to run the UPDATE statement with a WHERE clause to identify the row. The following sample script updates one row with two new values: &lt;?php include "mysql_connection.php"; $sql = "UPDATE fyi_links SET no...
2016-10-19, ∼2003🔥, 0💬

BYFN CLI Container "peer" Command
What is the BYFN (Build Your First Network) CLI Container "peer" Command? If you have the BYFN CLI container running, you can use it to run the "peer" command to manage your BYFN network. 1. Start the CLI container and connect to it: $ docker start cli cli $ docker exec -it cli bash bash-4.4# 2. Run...
2020-10-10, ∼2002🔥, 0💬

Link Atom Feed to Web Pages
How To Link Atom Feed to Web Pages to Tell Web Browsers That Your Web Pages Have Atom Feeds? One way to tell Web browsers that your Web pages have Atom Feed files is to add a "link" tag in the header section of your Web pages. The "link" tag defines a "link" element with 4 attributes: rel="alternate...
2017-12-13, ∼2002🔥, 0💬

HTML 'hr' Tags/Elements
What Are "hr" Tags/Elements? A "hr" element is a block level element that can be used directly as a sub-element in the body element. You can use "hr" elements to specify horizontal rulers. Here are basic rules about "hr" elements: "hr" elements can only have empty contents. "hr" elements are block e...
2017-08-03, ∼2002🔥, 0💬

Removing Values Saved in the Session in PHP
How To Remove Values Saved in the Current Session in PHP? If you want to remove values saved in the current session, you should use the unset() function on those saved values in $_SESSION, or use array() to empty $_SESSION: unset($_SESSION['MyColor']) - Removes one value named MyColor in the current...
2016-10-24, ∼2002🔥, 0💬

Azure AD v2 Error: Invalid Reply URL
Why Azure AD v2.0 display this error message: AADSTS50011: The reply url specified in the request does not match the reply URLsconfigured for the application? The root cause of this error is that you forgot the add the "redirect_uri" in your authentication request to Application ID settings on Azure...
2019-05-03, ∼2000🔥, 0💬

HTML 'big' and 'small' Tags/Elements
What Are HTML "big" and "small" Tags/Elements? "big" and "small" elements are inline elements that you can use to specify text to be displayed in bigger and smaller font sizes respectively. Here are basic rules about "big" and "small" elements: "big" and "small" elements are inline elements. "big" a...
2017-07-21, ∼2000🔥, 0💬

Build Implicit Flow with Azure AD v1
How to implement the OpenID Implicit Flow with Azure AD v1.0 service? If you want to implement the OpenID Implicit Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v1.0 Sign-on authentication request: Register your Web application to the A...
2021-05-16, ∼1999🔥, 0💬

Using HTML 'checkbox' Input Fields
How To Use "checkbox" Input Fields? A "checkbox" input field is defined as &lt;input type="checkbox" .../&gt;. A "checkbox" input field can be used to create a checkbox to allow viewers to switch on or off a boolean flag. There are other attributes you may need to use for a "checkbox" input ...
2017-04-15, ∼1998🔥, 0💬

<< < 28 29 30 31 32 33 34 35 36 37 38 > >>   ∑:1482  Sort:Date