Hello,<br><br>I'd like to put a form on my Pmwiki. I generate the form by php.<br><br>So I call the php code in the wiki through (:ostincontact:)<br><br>here is my cookbook (simplified):<br><br>&lt;?php if (!defined('PmWiki')) exit();
<br><br>Markup(&quot;ostincontact&quot;,'&lt;[-',&quot;/\\(:ostincontact:\\)/&quot;, ostincontact());<br><br>function ostincontact(){<br>&nbsp; $maforme=&quot;&lt;form enctype='multipart/form-data' action='' method='post'&gt;&lt;input type='hidden' name='pagename' value='
Contact.Contact' /&gt;<br>&nbsp; &lt;table border='0'&gt;<br>&nbsp; &lt;tr &gt;&lt;td&nbsp; align='right'&gt;Pr&amp;eacute;nom:&lt;/td&gt;&lt;td&nbsp; align='left'&gt;&lt;input name='' value=''&gt; &lt;/td&gt;&lt;/tr&gt;<br>&nbsp; &lt;tr &gt;&lt;td&nbsp; align='right'&gt;Nom:&lt;/td&gt;&lt;td&nbsp; align='left'&gt;&lt;input name='' value=''&gt; &lt;/td&gt;&lt;/tr&gt;
<br>&nbsp; &lt;/table&gt;<br>&nbsp; &lt;p class='vspace'&gt;&lt;/p&gt;<br>&nbsp; &lt;p&gt;&lt;input type='submit' name='ok' value='&amp;nbsp;&amp;nbsp;Envoyer&amp;nbsp;&amp;nbsp;' &gt;&lt;/p&gt;<br>&nbsp; &lt;/form&gt;<br>&quot;;<br><br>return $maforme;
<br>}<br><br><br>The problem: the text returned by the function ostincontact() is after reinterpreted by the other markups&nbsp; (in particular single quotes ''&nbsp; in emphased style)<br><br>the following returns the same as before but surrounded by &lt;pre&gt; ... &lt;/pre&gt;
<br><br>Markup(&quot;ostincontact&quot;,'inline',&quot;/\\(:ostincontact:\\)/&quot;, ostincontact());<br><br>Is there a way to not interpret the code returned by the function ostincontact()?<br><br>Like the wikini syntax {{php_script_name}} .
<br><br>Cheers,<br><br>Vincent<br><br><br>