Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Renders
[php]
echo 'By test';
?>
[/php]
And source code
[php]
<!--?php
echo 'By test';
?>
[/php]
Well, what's the problem, just replace it <!--?php
with <?php
where you will use it.
read the documentation
docs.cksource.com/Main_Page
most likely you are not the first to encounter this problem
try to just replace the tags on the output, before writing (to the database, for example)
$text = $_REQUEST['text'];
$text = preg_replace("<!--?php", "<?php", preg_replace("?-->", "?>", $text));
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question