On Apr 24, 2004, at 7:37 AM, stéphane ducasse wrote:
hi all
I'm trying to put some php example using smallWiki and I use = to have
the code as is.
Now this is not working well, have a look at:
=<?php
= echo "This is a test";
= ?>
=<?php echo "This is a test" ?>
For example:
http://kilana.unibe.ch:9090/seasideforphp/instructionseparation/
Hi Stéphane,
If I understand the behaviour of = correctly, it puts <pre> tags around
the block, which means that the block can contain html tags. In order
to have the < and > display correctly, you need to escape them with
HMTL entities. I've updated the page above - it should look right now.
Colin