>> English << | česky | Español | Português | Türkçe | Nederlands | По-русски | Deutsch | Français | Italiano | 中文 | ქართული | Magyar | PolskiZVON > Tutorials > XML Tutorial
>> Example 11 << | Prev | Next | Contents

Description

Processing instructions (PIs) allow documents to contain instructions for applications.

Well-formed documents


Processing instructions :


<example>

<?perl lower-to-upper-case  ?>

<?web-server add-header = "university" ?>

<text>vscht</text>

</example>


Documents with errorsTop


Processing instruction must end with ?>:


<example>

<?perl run _>



</example>