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

HTML Elements with Sub-elements Contents
What Are the HTML Elements Defined with Sub-elements Contents? The following HTML elements are defined to use the sub-element content model: &lt;html&gt; - The root element of the document. &lt;head&gt; - Element to provide head information to the document. &lt;ul&gt; - Eleme...
2024-04-14, ∼2542🔥, 0💬

Minimum Requirement of EPUB 3.1 File
What Is the minimum requirement of an EPUB 3.1 file? If you want to build an EPUB file that meets the minimum requirements of EPUB 3.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 3.1 book file. ap...
2018-06-27, ∼2541🔥, 0💬

'colspan' - Merging Cells HTML Table Rows
How To Merge Cells in a Row? If you want to merge multiple cells horizontally in a row, you need to use the "colspan" attribute of in a "td" element. "colspan" allows you to specify how many cells you want to merge into this cell horizontally. Below is a tutorial example of merging cells horizontall...
2022-01-18, ∼2539🔥, 2💬

💬 2022-01-10 amar: fdgfgfffff

Viewing Cookie Header Lines in PHP
How To View Cookie Header Lines in PHP? If you are interested to see the cookie header lines, or you are having trouble with your cookies and need to see the cookies to help debugging, you can run your script with PHP CGI interface in a command line window. The following tutorial exercise shows you ...
2016-11-02, ∼2537🔥, 0💬

HTML Elements with Mixed Contents
What Are the HTML Elements Defined with Mixed Contents? The following HTML elements are defined to use the mixed content model: &lt;p&gt; - Element to insert a paragraph. &lt;pre&gt; - Element to insert a pre-formatted text. &lt;li&gt; - Element to insert an item into a list....
2024-04-14, ∼2536🔥, 0💬

Putting Directory Entries into an Array in PHP
How To Dump the Contents of a Directory into an Array in PHP? If you want to get the contents of a directory into an array, you can use the scandir() function. It gets a list of all the files and sub directories of the specified directory and returns the list as an array. The returning list also inc...
2016-11-20, ∼2534🔥, 0💬

Cookie Management on Firefox in PHP
How Does Firefox Manage Cookies in PHP? Firefox browser allows you to delete old cookies, and gives you options to keep persistent cookies in cookie files until they reach their expiration time. The following tutorial shows you how to manage cookies in Firefox: Run Firefox Go to Tools/Options Click ...
2016-10-30, ∼2529🔥, 0💬

Inserting Rows Based on SELECT Statement in PHP
How To Insert Rows Based on SELECT Statements in PHP? If want to insert rows into a table based on data rows from other tables, you can use a sub-query inside the INSERT statement as shown in the following script example: &lt;?php include "mysql_connection.php"; $sql = "INSERT INTO fyi_links" . ...
2016-10-20, ∼2529🔥, 0💬

JSON-parse-Error.html - JSON.parse() Errors
How to catch errors when calling the JSON.parse() function in JavaScript? If you want to catch errors when calling the JSON.parse() function in JavaScript, you can follow this tutorial: 1. Use the "try {...} catch {...}" block to catch the error object throw from the JSON.parse() function, as shown ...
2023-09-07, ∼2526🔥, 0💬

'while ... else' Repeating Statement Blocks
How to enter "while ... else" statement blocks in Python code? "while ... else" statement blocks allow you to execute the main statement block repeatedly. When "while ... else" statement blocks are interpreted, the "while" statement block will be executed repeatedly until the given condition returns...
2018-02-28, ∼2525🔥, 0💬

'while ... else' Repeating Statement Blocks
How to enter "while ... else" statement blocks in Python code? "while ... else" statement blocks allow you to execute the main statement block repeatedly. When "while ... else" statement blocks are interpreted, the "while" statement block will be executed repeatedly until the given condition returns...
2018-02-28, ∼2525🔥, 0💬

What Is Python Module 'requests'
What Is Python module "requests"? "requests" is a Python external module that allows you to send organic, grass-fed HTTP/1.1 requests, without the need for manual labor. There’s no need to manually add query strings to your URLs, or to form-encode your POST data. Main features of "requests" module: ...
2018-09-01, ∼2524🔥, 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, ∼2522🔥, 0💬

Browsers Supporting Multiple HTML Forms
Do Browsers Support Multiple Forms? HTML does allow you to create multiple forms in a single XHTML document. Most browsers will display and handle multiple forms properly. If click a submit button in one form, browsers will submit input data only for that one form. Input data from other forms will b...
2017-04-01, ∼2522🔥, 0💬

Merging Two Arrays into a Single Array in PHP
How To Merge Values of Two Arrays into a Single Array in PHP? You can use the array_merge() function to merge two arrays into a single array. array_merge() appends all pairs of keys and values of the second array to the end of the first array. Here is a PHP script on how to use array_merge(): &l...
2017-01-11, ∼2522🔥, 0💬

Hello-2.0.epub Validation by EpubCheck
How to validate an EPUB 2.0.1 file with EpubCheck 4.0.2? If you want to validate an EPUB 2.0.1 book file, you can try this command: C:\fyicenter&gt; java -jar epubcheck-4.0.2\epubcheck.jar Hello-2.0.epub Validating using EPUB version 2.0.1 rules. No errors or warnings detected. epubcheck complet...
2021-04-15, ∼2520🔥, 0💬

Sorting an Array by Keys in PHP
How To Sort an Array by Keys in PHP? Sorting an array by keys can be done by using the ksort() function. It will re-order all pairs of keys and values based on the alphanumeric order of the keys. Here is a PHP script on how to use ksort(): &lt;?php $mixed = array(); $mixed["Zero"] = "PHP"; $mixe...
2017-01-21, ∼2520🔥, 0💬

Processing Web Forms in PHP
Where to find tutorials on how to process Web Forms in PHP? A collection of tutorials to answer many frequently asked questions on how to process Web Forms in PHP. Clear explanations and tutorial exercises are provided on generating and processing Web forms, getting values out of $_REQUEST, processi...
2016-11-17, ∼2520🔥, 0💬

XHTML Element Name Case Sensitive
Is XHTML Element Name Case Sensitive? Yes, XHTML element names are case sensitive. All element names must be written in lower case letters. Here are some valid and invalid XHTML element names: &lt;html&gt; - Valid name. &lt;HTML&gt; - Invalid name, must use lower case letters. &l...
2024-04-07, ∼2515🔥, 0💬

Closing XHTML 'meta' Tags
What Is wrong with my &lt;meta&gt; Tags? If you are converting existing HTML documents to XHTML format, you may find some &lt;meta&gt; tags are written as: &lt;meta name="Author" content="FYICenter.com"&gt ;&lt;meta name="Description" content="Tutorials, FAQs and Tips on ...
2024-04-07, ∼2514🔥, 0💬

Closing XHTML 'br' Tags
What Is wrong with my &lt;br&gt; Tags? If you are used HTML syntax, you may write your &lt;br&gt; tags as in the paragraph below: &lt;p&gt; I love the way you look at me,&lt;br&gt; Your eyes so bright and blue.&lt;br&gt; I love the way you kiss me,&lt;br&a...
2024-03-23, ∼2513🔥, 0💬

Hello-3.1.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 3.1 book? At least one content file, like content.xhtml, is required for an EPUB 3.1 book in the book ZIP container. It provides the content of the book. Here is the requirement on a content file: 1. A content file must be named with .xhtml...
2021-08-11, ∼2513🔥, 0💬

Introduction of EPUB 3.1 Specification
Where to find tutorials on introduction of EPUB 3.1 Specification? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on introduction of EPUB 3.1 Specification. What Is EPUB 3.1 Specification Minimum Requirement of EPUB 3.1 File Hello-3.1.epub - "mim...
2018-06-27, ∼2513🔥, 0💬

Hello-2.0.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 2.0.1 book? At least one content file, like content.xhtml, is required for an EPUB 2.0.1 book in the book ZIP container. It provides the content of the book. Here is the requirement on a content file: 1. A content file must be named with .x...
2021-04-04, ∼2512🔥, 0💬

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