PAD - PHP Application Driver


home | manual | reference | regression | sequence | develop | apps


Pages/escaping special PAD chars

PHP
HTML
pages/escaping_special_PAD_chars.pad
Result
{block}

<p>
Sometimes the PAD parser is confused and interprets something incorrectly as a PAD instruction.
<br><br>
In those cases a PAD entity can be used to prevent this.
</p>

<p>
<table border="0">
<tr><td><b>Character </b> &nbsp;</td><td>&nbsp; <b> PAD entity</b></td></tr>
<tr><td align="center">{</td><td> &nbsp;&nbsp;&amp;open;</td></tr>
<tr><td align="center">
}
</td><td> &nbsp;&nbsp;&amp;close;</td></tr>
<tr><td align="center">|</td><td> &nbsp;&nbsp;&amp;pipe;</td></tr>
<tr><td align="center">=</td><td> &nbsp;&nbsp;&amp;eq;</td></tr>
<tr><td align="center">,</td><td> &nbsp;&nbsp;&amp;comma;</td></tr>
<tr><td align="center">@</td><td> &nbsp;&nbsp;&amp;at;</td></tr>
</table>

<p>
For example, in this manual the string <b>{tag}</b> must be writen as <b>&amp;open;</b>tag<b>&amp;close;</b>
<br>to make sure the PAD parser leaves it alone.
</p>

{/block}

Sometimes the PAD parser is confused and interprets something incorrectly as a PAD instruction.

In those cases a PAD entity can be used to prevent this.

Character    PAD entity
{   &open;
}   &close;
|   &pipe;
=   &eq;
,   &comma;
@   &at;

For example, in this manual the string {tag} must be writen as &open;tag&close;
to make sure the PAD parser leaves it alone.




home | manual | reference | regression | sequence | develop | apps

(c) 2003-2025 Herbert Groot Jebbink