<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   ∑:1482  Sort:Date

Selecting an Existing Database in PHP
How To Select an Exiting Database in PHP? The first thing after you have created a connection object to the MySQL server is to select the database where your tables are locate, by using the mysql_select_db() function. If your MySQL server is offered by your Web hosting company, they will assign a da...
2016-10-20, 2267🔥, 0💬

Create Visual Basic Project in Visual Studio 2017
How to Create a Visual Basic Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual Basic program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &...
2023-09-16, 2261🔥, 0💬

"MyLib.vb" - VB Class and Library
How to create a VB class and build it into a library? If you want to create a VB class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.vb, with a text editor: ' MyLib.vb ' Copyright (c) FYIcenter.com Public Class MyLib Public Shared Sub PrintHel...
2017-08-13, 2261🔥, 0💬

Viewing the Content of a Cookie File in PHP
How to View the Content of a Cookie File in PHP? Cookie files are normal text files. You can view them with any text editor. Follow the steps below to see what is in a cookie file created by your own PHP script. Copy the following sample script, setting_persistent_cookies.php ,to your Web server: &a...
2016-10-30, 2252🔥, 0💬

EpubCheck 4.0.2 --json Option
What is EpubCheck 4.0.2 "--json" Option? EpubCheck 4.0.2 "--json" option allows you to generate a JSON 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 --json Hello.json Hello-3.0.epub No errors or ...
2018-11-17, 2251🔥, 0💬

Joining Keys and Values into an Array in PHP
How To Join a List of Keys with a List of Values into an Array in PHP? If you have a list keys and a list of values stored separately in two arrays, you can join them into a single array using the array_combine() function. It will make the values of the first array to be the keys of the resulting ar...
2017-01-11, 2250🔥, 0💬

Setting session.gc_maxlifetime Properly in PHP
How To Set session.gc_maxlifetime Properly in PHP? As you know that session.gc_maxlifetime is the session value timeout period. You should set this value based on the usage pattern of your visitors. Here are some suggestions: # Set it to 20 minutes for a normal Web site: session.gc_maxlifetime = 120...
2016-10-24, 2248🔥, 0💬

View EPUB 3.0 Metadata List with Calibre
How to see more EPUB 3.0 metadata list with Calibre? You can follow this tutorial to view EPUB 3.0 metadata list with Calibre. 1. Click Row-Your-Boat-3.0.epub to download this sample EPUB 3.0 book. 2. Add Row-Your-Boat-3.0.epub to Calibre book library. You see some EPUB 3.0 metadata displayed below ...
2018-04-28, 2245🔥, 0💬

Copying an Array in PHP
Can You Copy an Array in PHP? You can create a new array by copying an existing array using the assignment statement. Note that the new array is not a reference to the old array. If you want a reference variable pointing to the old array, you can use the reference operator "&amp;". Here is a PHP...
2017-02-03, 2242🔥, 0💬

View RSS Feeds with IE (Internet Explorer)
How to View RSS Feeds with IE (Internet Explorer)? If you want to view RSS Feeds with IE (Internet Explorer), you can follow this tutorial: 1. Launch IE (Internet Explorer) 11. 2. Enter the following in the URL input box: http://dev.fyicenter.com/rss_x ml.php3. Press "Enter" key. You see the RSS fee...
2017-10-16, 2239🔥, 0💬

HTML http-equiv 'meta' Tag/Element
What Is an HTML http-equiv "meta" Tag/Element? a http-equiv "meta" element is a special "meta" element that provides information equivalent to HTTP headers. A http-equiv "meta" element must include the "http-equiv" attribute as, http-equiv="Content-Type". Here is some good examples: &lt;meta htt...
2017-06-23, 2238🔥, 0💬

Differences between RSS 2.0 and Atom 1.0
What Are Main Differences between RSS 2.0 and Atom 1.0? Main differences between Atom 1.0 and RSS 2.0 are: Atom has separate "summary" and "content" elements, while RSS only has one "description" element. Atom standardizes auto-discovery in contrast to the many non-standard variants used with RSS 2....
2017-12-13, 2237🔥, 0💬

EPUB 2.0 Metadata - dc:subject Element
What is EPUB 2.0 Metadata "dc:subject" Element? EPUB 2.0 Metadata "dc:subject" is an optional metadata element to specify the subject category of the EPUB 2.0 book. When using "dc:subject" metadata element, you should follow an industry standard like: BISAC (Book Industry Standards And Communication...
2019-01-26, 2234🔥, 0💬

Setting a Persistent Cookie in PHP
How To Set a Persistent Cookie in PHP? If you want to set a persistent cookie, you can use the setcookie() function with an extra parameter to specify its expiration time. To follow sample script sets 2 persistent cookies to be expired within 7 days: setcookie("LoginName","FYICent er");setcookie("Pr...
2016-11-04, 2231🔥, 0💬

HTML 'em' Tag/Element
What Is an HTML "em" Tag/Element? An "em" element is an inline element that you can use to specify text with a normal emphasis. Here are basic rules about "em" elements: "em" elements are inline elements. "em" elements can not be used at block level. Contents of "em" elements will be displayed in it...
2017-04-28, 2230🔥, 0💬

Relation between HTML and HTTP
What Is the relation between HTML and HTTP? HTTP (HyperText Transfer Protocol) is an Internet communication protocol, that allows a viewer's computer talking to a publisher's computer to fetch HTML documents and other resources. The viewer's computer issues a HTTP request message to the publisher co...
2024-02-09, 2224🔥, 2💬

"MyLibApp.vb" - Call VB Class from Library
How to call a function from a VB class provided in a library? If you want to call a function from a VB class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp.v...
2017-08-13, 2207🔥, 0💬

EPUB 3.0 Package Metadata
Where to find tutorials on EPUB 3.0 Package Metadata? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on EPUB 3.0 Package Metadata. What Is EPUB 3.0 Package Metadata EPUB 3.0 Metadata - dc:identifier Element EPUB 3.0 Metadata - dc:title Element EP...
2018-06-01, 2204🔥, 0💬

JSON-stringify-Filter.html - JSON.stringify() Array Replacer
How to write a replacer array to filter values while the JSON.stringify() function is generating the JSON text string? If you call JSON.stringify() with an array as the replacer, the array elements will be used to filters to select object properties with keys match one of array elements. All other o...
2023-09-07, 2203🔥, 0💬

Hello-3.0.epub - Package File: package.opf
How to create a package file like package.opf for an EPUB 3.0 book? At least one package file, like package.opf, is required for an EPUB 3.0 book in the book ZIP container. It defines required meta data and specifies 2 required content files. Here is the requirement on a package file: 1. A package f...
2018-11-29, 2203🔥, 0💬

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

Installing 'requests' Module
How to install "requests" module? I am getting the "ModuleNotFoundError: No module named 'requests'" error. If you are getting the following error when running "import requests", you need to follow this tutorial to install the "requests" module. C:\fyicenter&gt;python Python 3.6.2 (v3.6.2:5fd33b...
2018-09-01, 2199🔥, 0💬

Filtering Out Empty Files in PHP
Why Do You Need to Filter Out Empty Files in PHP? When you are processing uploaded files, you need to check for empty files, because they could be resulted from a bad upload process but the PHP engine could still give no error. For example, if a user typed a bad file name in the upload field and sub...
2016-10-14, 2196🔥, 0💬

Tools to Create Atom Feed Files
Are there any tools to Create Atom Feed Files? Obviously, there are many tools to create Atom Feed files: Using Atom on-line scrapers - On-line scrapers are on-line services that can analyze your Web pages and convert the result into Atom feed files automatically. All you need to do is to provide th...
2017-11-25, 2191🔥, 0💬

<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   ∑:1482  Sort:Date