<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="1" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[1]</anchor-end>
<cite>Processing Instruction</cite> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="http://docs.roxen.com/roxen/2.1/programmer/pike/tag.xml" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI">http://docs.roxen.com/roxen/2.1/programmer/pike/tag.xml</anchor-external>
(<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">名無しさん</anchor> [sage])</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="2" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[2]</anchor-end></p><blockquote><p>The &lt;?pike ... ?&gt; processing instruction tag (PI for short) is used to smoothly inline pike code in your pages. The perhaps most usable aspect of this is for quickly throwing together a small webpage application or for experimenting and toying around with the roxen programming environment. Since the code resides in the page, it won't be so reusable a component, as would a roxen module, but the short cycle time between applying a change and seeing the results right after another page reload make it an ideal development tool.</p></blockquote><p>(<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">名無しさん</anchor> [sage])</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="3" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[3]</anchor-end></p><blockquote><pre class="XML example code">&lt;?pike
//X &lt;gtext&gt;Server Info&lt;/gtext&gt;&lt;br /&gt;
write(&quot;This is %s running %s, and we've been up for %d seconds.&quot;,
roxen.version, roxen[&quot;pike-version&quot;], roxen.uptime);
//X &lt;br /&gt;&lt;gtext&gt;Cookies&lt;/gtext&gt;&lt;br /&gt;
//X &lt;pre&gt;&lt;insert scope='cookie' variables='full' /&gt;&lt;/pre&gt;
if(cookie.hi == &quot;Hi!&quot;)
cookie.hi = &quot;Ho!&quot;;
else
cookie.hi = &quot;Hi!&quot;;
?&gt;</pre><p><src xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:10:"><anchor-internal xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="1" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">&gt;&gt;1</anchor-internal></src></p></blockquote></body></html>