<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Date

Add Request URL Template Parameters
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? If your API Operation requires some key parameters, you put them as template parameters in the URL template of the operation. Using template parameters reduces the need for providing parameters in the...
2018-03-24, 2982👍, 0💬

What Is session_register() in PHP
What Is session_register() in PHP? session_register() is old function that registers global variables into the current session. You should stop using session_register() and use array $_SESSION to save values into the current session now.     ⇒ Working with MySQL Database in PHP ⇐ Closing a Session ...
2016-10-22, 2979👍, 0💬

EPUB 3.0 Metadata - dc:publisher and dc:rights Elements
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" and "dc:rights" are optional metadata elements to specify the publisher and the rights statement of the EPUB 3.0 book. For example, the following two elements specify that this EPUB book was published...
2018-05-19, 2962👍, 0💬

Add Request Query String Parameters
How to add request query string Parameters to my Azure API operation to make it more user friendly? If your API operation uses URL template parameters, the client system must call it with parameter values specified in the correct position, like: https://.../exchange-rate/USD/ EUR/2020-10-10The above...
2018-03-24, 2962👍, 0💬

'xsl-transform' Azure API Policy Statement
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows you to apply an XSL transformation to XML in the body of the inbound request or outbound response. The "xsl-transform" Policy Statement uses the following syntax: &lt;xsl-transform&gt; &lt;...
2017-12-04, 2952👍, 0💬

json_last_error_msg() - PHP JSON Error Message
How to detect errors occurred in the json_decode() call? You can use the following two functions to detect error and display error message occurred during the last call of json_decode() or json_encode(). json_last_error() - Returns the error code occurred in the last json_decode() or json_encode() c...
2018-03-04, 2950👍, 0💬

3Pigs3-3.1.epub - Add Images
How to add images to my EPUB books Images can be added into book content using the XHTML "img" elements. For example, you can download this EPUB book, 3Pigs3-3.1.epub , which contains an illustration image in the The-Opening.xhtml: &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;html xm...
2018-12-26, 2949👍, 0💬

Login to Azure API Management Publisher Dashboard
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an Azure API Management Service publisher dashboard, you can login to the publisher dashboard as shown in this tutorial: 1. Login to Azure Portal with your work email address. 2. Click "All Resources" in...
2018-04-21, 2912👍, 0💬

Hello-3.1.epub Created with WinRAR
How to create Hello-3.1.epub with WinRAR? I have all required files to create Hello-3.1.epub. To create the EPUB 3.1 example, Hello-3.1.epub, you need to collect all files mentioned from previous tutorials: |-- mimetype |-- package.opf |-- content.xhtml |-- navigation.xhtml |-- META-INF |-- containe...
2019-01-12, 2851👍, 0💬

FYIcenter.com Online Tools
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter FYIcenter XML to JSON Converter
2017-12-05, 2840👍, 0💬

Add API to API Products - 2017 Version
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Management Service? You can follow this tutorial to add an API to an API product on the Publisher Portal of an Azure API Management Service. 1. Click API from the left menu on the Publisher Portal. You s...
2017-09-20, 2833👍, 0💬

OpenID Tutorials
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about OpenID: Introduction to OpenID What Is OpenID What Is OpenID Connect OpenID Usage Statistics Differences between OpenID and OAuth OpenID Connect A...
2019-01-12, 2824👍, 0💬

Add Request Query String Parameters - 2017 Version
How to add request query string Parameters to my Azure API operation 2017 version to make it more user friendly? If your API operation uses URL template parameters, the client system must call it with parameter values specified in the correct position, like: https://.../exchange-rate/USD/ EUR/2020-10...
2018-06-12, 2789👍, 0💬

Submitting Values without Using a Form in PHP
How To Submit Values without Using a Form in PHP? If you know the values you want to submit, you can code the values in a hyper link at the end of the URL. The additional values provided at the end of a URL is called query string. There are two suggestions on how to use query strings to submit value...
2016-11-08, 2782👍, 0💬

Padding an Array with a Given Value in PHP
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value multiple times to the end or beginning of an array, you can use the array_pad($array, $new_size, $value) function. If the second argument, $new_size, is positive, it will pad to the end of the array. If ...
2017-01-05, 2746👍, 0💬

Install .NET Framework in Visual Studio
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer installed. If you have the Visual Studio Installer ready, you can follow these steps to install .NET Framework in Visual Studio Community 2017. 1. Close Visual Studio, if you are running it. 2. Run "All...
2017-09-19, 2738👍, 0💬

What Is HTML?
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web pages. Web browsers receive HTML documents from Websites and render them into Web pages. More precisely, HTML gives authors the means to: Publish Web pages with headings, text, tables, lists, photos, etc....
2017-02-20, 2730👍, 0💬

FYIcenter JSON Validator and Formatter
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text string and converts it to a pretty format.
2017-11-25, 2707👍, 2💬

💬 2017-11-25 Eric: Agree.

💬 2017-08-13 Neil: Not too bad!

API Management Services at Azure Portal
Where to find tutorials on API Management Services at Azure Portal? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on API Management Services at Azure Portal: What Is Azure API Management Service Azure API Management - Publisher Dashboard Azure A...
2018-10-30, 2703👍, 0💬

Azure API Management - Developer Portal Admin
What is Azure API Management Developer Portal Admin? The Developer Portal Admin is an Azure Web portal that allows you to manage the Developer Portal and run analytical reports on your API services. Once you have signed up for an Azure API Management Service, you will be given an API Management Deve...
2018-07-22, 2694👍, 0💬

Login to Developer Portal as Publisher
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Portal of an Azure API Management Service is used by client developers. But as a publisher, you can also use the Developer Portal to test API operations internally. You can follow this tutorial to login ...
2017-09-20, 2687👍, 0💬

Protecting Special Characters in Query String in PHP
How To Protect Special Characters in Query String in PHP? If you want to include special characters like spaces in the query string, you need to protect them by applying the urlencode() translation function. The script below shows how to use urlencode(): &lt;?php print("&lt;html&gt;"); p...
2022-09-09, 2681👍, 1💬

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

Hello-2.0.epub Created with WinRAR
How to create Hello-2.0.epub with WinRAR? I have all required files to create Hello-2.0.epub. To create the EPUB 2.0.1 example, Hello-2.0.epub, you need to collect all files mentioned from previous tutorials: |-- mimetype |-- package.opf |-- content.xhtml |-- navigation.xml |-- META-INF |-- containe...
2021-04-15, 2633👍, 0💬

<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Date