mirror of
https://github.com/boostorg/website.git
synced 2026-01-23 18:12:16 +00:00
28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<?php
|
|
# phpWebNotes - a php based note addition system
|
|
# Copyright (C) 2000-2002 Webnotes Team - webnotes-devel@sourceforge.net
|
|
# This program is distributed under the terms and conditions of the GPL
|
|
# See the files README and LICENSE for details
|
|
|
|
# --------------------------------------------------------
|
|
# $Id$
|
|
# --------------------------------------------------------
|
|
|
|
$page_title = 'XML';
|
|
$page = 'XML';
|
|
$page_parent = 'Markup Languages';
|
|
$page_prev = 'XHTML';
|
|
$page_next = 'Web Services';
|
|
|
|
include( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'sample_header.php' );
|
|
?>
|
|
<h1>XML</h1>
|
|
|
|
<p>Short for Extensible Markup Language, a specification developed by the W3C. XML is a pared-down version of SGML, designed especially for Web documents. It allows designers to create their own customized tags, enabling the definition, transmission, validation, and interpretation of data between applications and between organizations.</p>
|
|
|
|
<p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p>
|
|
|
|
<?php
|
|
include( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'sample_footer.php' );
|
|
?>
|